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
$ python3 -c 'import typing; typing.TYPE_CHECKING = True; import filelock'Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/venv/lib/python3.8/site-packages/filelock/__init__.py", line 14, in <module> from ._api import AcquireReturnProxy, BaseFileLock File "/tmp/venv/lib/python3.8/site-packages/filelock/_api.py", line 22, in <module> from typing_extensions import SelfModuleNotFoundError: No module named 'typing_extensions'
but a type checker isn't going to actually "import" it
The text was updated successfully, but these errors were encountered:
I believe it should be a dev-only or typing-only dependency and not needed at runtime -- for example:
it is only "needed" in
TYPE_CHECKING
mode:but a type checker isn't going to actually "import" it
The text was updated successfully, but these errors were encountered: