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
To avoid this sort of thing: allow_pickle_read: "bool | None" = None
and instead do allow_pickle_read: bool | None = None
even though we still support 3.8 and 3.9.
The text was updated successfully, but these errors were encountered:
https://docs.astral.sh/ruff/rules/#flake8-future-annotations-fa
To avoid this sort of thing:
allow_pickle_read: "bool | None" = None
and instead do
allow_pickle_read: bool | None = None
even though we still support 3.8 and 3.9.
The text was updated successfully, but these errors were encountered: