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 c61d6ea commit 22c66d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kyu_7/pointless_farmer/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

from typing import TypeVar

T = TypeVar("T", bound=str | list)

T = TypeVar("T", bound=str|list)

def buy_or_sell(pairs: list, harvested_fruit: str) -> T:
"""
Expand Down

0 comments on commit 22c66d5

Please sign in to comment.