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
I specifically used list over List from typing as that version is deprecated (see).
This indeed is not immediately compatible with Python 3.8. However, in 99% of the cases this can be solved by adding from __future__ import annotations at the top of the file.
The text was updated successfully, but these errors were encountered:
And maybe
Dict
,Type
, and other types fromtyping
.Check this comment from Stan's.
And quoting part of his comment here:
The text was updated successfully, but these errors were encountered: