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 67975bb commit 8890887
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions kyu_7/pointless_farmer/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,8 @@
GitHub: https://github.com/ikostan
"""

from typing import TypeVar, Any

T = TypeVar("T", bound=str | list[Any])


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

0 comments on commit 8890887

Please sign in to comment.