You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempted to update house_price_prediction/multiregion_house_price_predictor.py, when appending Annotated[...] into a list, e.g. list[Annotated[StructuredDataset, <..>]] or list[Annotated[pd.DataFrame, <..>]] do not work for me - whatever type I put in <..> gives me unhashable error for that type.
Expected behavior
I expected the type check to pass, as is done originally with typing.List[pd.DataFrame]
Additional context to reproduce
With the imported modules from house_price_predictor.py as-is, change L64-L69 to:
Describe the bug
Attempted to update
house_price_prediction/multiregion_house_price_predictor.py
, when appendingAnnotated[...]
into a list, e.g.list[Annotated[StructuredDataset, <..>]]
orlist[Annotated[pd.DataFrame, <..>]]
do not work for me - whatever type I put in<..>
gives me unhashable error for that type.Expected behavior
I expected the type check to pass, as is done originally with
typing.List[pd.DataFrame]
Additional context to reproduce
house_price_predictor.py
as-is, change L64-L69 to:Screenshots
Are you sure this issue hasn't been raised already?
Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: