Skip to content

Commit

Permalink
Update solution.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 30, 2024
1 parent 60ce175 commit 4b117f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kyu_7/pointless_farmer/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
GitHub: https://github.com/ikostan
"""

from typing import Any

def buy_or_sell(pairs: list, harvested_fruit: str) -> list | str:

def buy_or_sell(pairs: list, harvested_fruit: str) -> list[Any] | str:
"""
Decide which direction to trade.
Expand Down

0 comments on commit 4b117f3

Please sign in to comment.