We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3398369 commit 8c963d3Copy full SHA for 8c963d3
st3/sublime_lib/_compat/enum.py
@@ -1,4 +1,4 @@
1
-try:
+if False: # For MyPy only
2
from enum import * # noqa: F401, F403
3
-except ImportError:
+else:
4
from ..vendor.python.enum import * # type: ignore # noqa: F401, F403
0 commit comments