Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
Fix type annotation of [min/max]_date_of_purchase params in get_inves…
Browse files Browse the repository at this point in the history
…tments.
  • Loading branch information
Raphael Krupinski committed Oct 28, 2023
1 parent c76afce commit e65dc87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions peerberrypy/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,8 @@ def get_investments(
self,
quantity: int,
start_page: int = 0,
max_date_of_purchase: Optional[int] = None,
min_date_of_purchase: Optional[int] = None,
max_date_of_purchase: Optional[date] = None,
min_date_of_purchase: Optional[date] = None,
max_interest_rate: Optional[decimal.Decimal] = None,
min_interest_rate: Optional[decimal.Decimal] = None,
max_invested_amount: Optional[decimal.Decimal] = None,
Expand Down

0 comments on commit e65dc87

Please sign in to comment.