Skip to content

Commit

Permalink
Hopefully fix pyright action
Browse files Browse the repository at this point in the history
  • Loading branch information
ValueRaider committed Jan 16, 2025
1 parent e9e5b46 commit 831db6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yfinance/screener/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
T = TypeVar('T', bound=Union[str, numbers.Real])

class QueryBase(ABC):
def __init__(self, operator: str, operand: Union[ List['QueryBase'], Tuple[str, Union[str, numbers.Real], ...] ]):
def __init__(self, operator: str, operand: Union[ List['QueryBase'], Tuple[str, Tuple[Union[str, numbers.Real], ...]] ]):
operator = operator.upper()

if not isinstance(operand, list):
Expand Down

0 comments on commit 831db6e

Please sign in to comment.