Skip to content

Commit

Permalink
Fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
mberk committed Jun 9, 2023
1 parent d16150c commit bda012a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_non_prices.py
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ def test_publish_time_to_datetime():
assert publish_time_to_datetime(None) is None


def test_datetime_to_publish_time(market_book: dict[str, Any]):
def test_datetime_to_publish_time(market_book: Dict[str, Any]):
assert datetime_to_publish_time(None) is None
assert (
datetime_to_publish_time(publish_time_to_datetime(market_book["publishTime"]))
Expand Down

0 comments on commit bda012a

Please sign in to comment.