Skip to content

Commit

Permalink
Fix incorrect type
Browse files Browse the repository at this point in the history
  • Loading branch information
diceroll123 committed Dec 8, 2024
1 parent 949f5a6 commit 073a71d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neofoodclub/neofoodclub.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -689,8 +689,8 @@ class NeoFoodClub:
"""Optional[:class:`str`]: When the round started in UTC, if applicable."""

@property
def start_nst(self) -> str | None:
"""Optional[:class:`str`]: When the round started in NST, if applicable."""
def start_nst(self) -> datetime | None:
"""Optional[:class:`datetime.datetime`]: When the round started in NST, as an aware datetime object if applicable."""

@property
def current_odds(
Expand Down

0 comments on commit 073a71d

Please sign in to comment.