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
📣 Notification Service(s) Impacted Sending messages works great. Problem occurs in type checking.
🐞 Describe the bug Stubs files do not match with the real classes, for example:
apprise/asset.pyi
storage_mode
apprise/common.pyi
💡 Screenshots and Logs
Checking types with mypy... error: Module "apprise.common" has no attribute "PersistentStoreMode" [attr-defined] error: Unexpected keyword argument "storage_path" for "AppriseAsset" [call-arg] error: Unexpected keyword argument "storage_mode" for "AppriseAsset" [call-arg]
💻 Your System Details:
🔮 Additional context For developer users.
For info, I can add # type: ignore at the end of lines to skip some errors.
# type: ignore
The text was updated successfully, but these errors were encountered:
No branches or pull requests
📣 Notification Service(s) Impacted
Sending messages works great. Problem occurs in type checking.
🐞 Describe the bug
Stubs files do not match with the real classes, for example:
apprise/asset.pyi
AppriseAsset -> Does not containsstorage_mode
apprise/common.pyi
PersistentStoreMode -> Does not exist💡 Screenshots and Logs
💻 Your System Details:
🔮 Additional context
For developer users.
For info, I can add
# type: ignore
at the end of lines to skip some errors.The text was updated successfully, but these errors were encountered: