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
IMO the code has enough type hints to consider this package typed, so we should add a py.typed file to make mypy not complain about missing stubs. Current situation, with import schedule on line 15 of my_project/__main__.py:
$ mypy my_project/
my_project/__main__.py:15: error: Skipping analyzing "schedule": found module but no type hints or library stubs
my_project/__main__.py:15: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
Found 1 error in 1 file (checked 10 source files)
The text was updated successfully, but these errors were encountered:
IMO the code has enough type hints to consider this package typed, so we should add a
py.typed
file to make mypy not complain about missing stubs. Current situation, withimport schedule
on line 15 ofmy_project/__main__.py
:The text was updated successfully, but these errors were encountered: