File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1010)
1111
1212if TYPE_CHECKING :
13- from ._bdist_wheel import bdist_wheel as bdist_wheel
13+ from ._bdist_wheel import bdist_wheel # noqa: F401
1414else :
1515 try :
1616 # Better integration/compatibility with setuptools:
1717 # in the case new fixes or PEPs are implemented in setuptools
1818 # there is no need to backport them to the deprecated code base.
1919 # This is useful in the case of old packages in the ecosystem
2020 # that are still used but have low maintenance.
21- from setuptools .command .bdist_wheel import bdist_wheel
21+ from setuptools .command .bdist_wheel import bdist_wheel # noqa: F401
2222 except ImportError :
2323 # Only used in the case of old setuptools versions.
2424 # If the user wants to get the latest fixes/PEPs,
2525 # they are encouraged to address the deprecation warning.
26- from ._bdist_wheel import bdist_wheel as bdist_wheel
26+ from ._bdist_wheel import bdist_wheel
You can’t perform that action at this time.
0 commit comments