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
In the future of Python release, from __future__ import annotations would be defaulted enabled. To get inspiration on how to support this, pydantichttps://docs.pydantic.dev/latest/ would be a great resource to learn and research.
The text was updated successfully, but these errors were encountered:
Describe the bug
When add
from __future__ import annotation
in the beginning of the source file, it will raise error.To Reproduce
Just add
from __future__ import annotation
in any of example source files, the error will be thrown.Log/Screenshots
(Skip)
Additional comments
In the future of Python release,
from __future__ import annotations
would be defaulted enabled. To get inspiration on how to support this,pydantic
https://docs.pydantic.dev/latest/ would be a great resource to learn and research.The text was updated successfully, but these errors were encountered: