Skip to content

Commit

Permalink
refactor: fix type annotations
Browse files Browse the repository at this point in the history
Signed-off-by: Eiko Wagenknecht <[email protected]>
  • Loading branch information
eikowagenknecht committed Oct 26, 2023
1 parent 5b4e7e3 commit c3ed7a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lootscraper/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,10 @@ def read_active_offers(
self,
time: datetime,
*,
type_: str | None = None,
source: str | None = None,
duration: str | None = None,
last_offer_id: str | None = None,
type_: OfferType | None = None,
source: Source | None = None,
duration: OfferDuration | None = None,
last_offer_id: int | None = None,
) -> Sequence[Offer]:
session: Session = self.Session()

Expand Down

0 comments on commit c3ed7a6

Please sign in to comment.