We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mutagen lists itself as py.typed however several of the modules are considered private - see this for more information.
example: mutagen.File, mutagen.MutagenError are both stored in "_xx" files which is considered private.
mutagen.File
mutagen.MutagenError
Fixing this will eliminate errors from type checkers. Thanks!
The text was updated successfully, but these errors were encountered:
I'm hitting this too.
Public types look to be:
from mutagen._util import MutagenError from mutagen._file import FileType, StreamInfo, File from mutagen._tags import Tags, Metadata, PaddingInfo
Would it be ok to submit a PR with those 3 files renamed as util.py, file.py and tags.py?
util.py
file.py
tags.py
Sorry, something went wrong.
No branches or pull requests
mutagen lists itself as py.typed however several of the modules are considered private - see this for more information.
example:
mutagen.File
,mutagen.MutagenError
are both stored in "_xx" files which is considered private.Fixing this will eliminate errors from type checkers. Thanks!
The text was updated successfully, but these errors were encountered: