don't include `from __future__ import annotations` in the output when `target_python_version` is 3.14
Is your feature request related to a problem? Please describe.
__future__.annotations is no longer necessary as of python 3.14. see https://peps.python.org/pep-0749/#abstract
Describe the solution you'd like
when target_python_version is 3.14, from __future__ import annotations shouldn't be included in the output
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context Add any other context or screenshots about the feature request here.
Thanks for reporting the issue! As now, as far as I remember, the import is always added. Sometimes it can be avoided even for lower Python versions because its features are not always used.
Does it cause any issue to you, or is it just for cleanliness?
just cleanliness