I've got two issues related to mypy:
- The
py.typed file is not included in the pip package so mypy reports errors like Skipping analyzing 'dbus_next.service': found module but no type hints or library stubs
- If I add a
py.typed file, those errors disappear but I still get messages like error: Name 's' is not defined when defining service methods etc.
Have I missed something on the second one that's making mypy fail?
I've got two issues related to mypy:
py.typedfile is not included in the pip package so mypy reports errors likeSkipping analyzing 'dbus_next.service': found module but no type hints or library stubspy.typedfile, those errors disappear but I still get messages likeerror: Name 's' is not definedwhen defining service methods etc.Have I missed something on the second one that's making mypy fail?