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
Right now, when using this library in any project which uses mypy, it gives the following error:
error: Skipping analyzing "m3u8": module is installed, but missing library stubs or py.typed marker
That's because the library doesn't have type hints, nor have type stubs in the typeshed repository.
Type hints are super helpful, not only can help to prevent bugs when combined with a static code analyzer like mypy, but also serves as documentation for any new user of the library, which makes it far easier to understand what can be and cannot be done with every method and property.
Please, consider adding type hints to the library.
The text was updated successfully, but these errors were encountered:
Right now, when using this library in any project which uses mypy, it gives the following error:
That's because the library doesn't have type hints, nor have type stubs in the typeshed repository.
Type hints are super helpful, not only can help to prevent bugs when combined with a static code analyzer like mypy, but also serves as documentation for any new user of the library, which makes it far easier to understand what can be and cannot be done with every method and property.
Please, consider adding type hints to the library.
The text was updated successfully, but these errors were encountered: