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
Try losing remaining from __future__ import annotations lines (if can't lose these lines for any reason then move this point forward for review when bump to 3.12). Currently required in order to:
use typing.TYPE_CHECKER to avoid type annotations causing circular imports.
use | in a typed return.
use classes defined in a module as type annotations elsewhere within that same module.
The text was updated successfully, but these errors were encountered:
from __future__ import annotations
lines (if can't lose these lines for any reason then move this point forward for review when bump to 3.12). Currently required in order to:typing.TYPE_CHECKER
to avoid type annotations causing circular imports.The text was updated successfully, but these errors were encountered: