https://github.com/SoftwareHeritage/swh-model
Revision 18fde5047233f1a2a53fc790062171001f3e809f authored by Valentin Lorentz on 04 January 2021, 11:46:23 UTC, committed by Valentin Lorentz on 04 January 2021, 14:48:26 UTC
1 parent 5746850
Raw File
Tip revision: 18fde5047233f1a2a53fc790062171001f3e809f authored by Valentin Lorentz on 04 January 2021, 11:46:23 UTC
Add missing slots=True for Directory.
Tip revision: 18fde50
mypy.ini
[mypy]
namespace_packages = True
warn_unused_ignores = True

# 3rd party libraries without stubs (yet)

[mypy-attrs_strict.*]  # a bit sad, but...
ignore_missing_imports = True

[mypy-deprecated.*]
ignore_missing_imports = True

[mypy-django.*]  # false positive, only used my hypotesis' extras
ignore_missing_imports = True

[mypy-dulwich.*]
ignore_missing_imports = True

[mypy-iso8601.*]
ignore_missing_imports = True

[mypy-pkg_resources.*]
ignore_missing_imports = True

[mypy-pyblake2.*]
ignore_missing_imports = True

[mypy-pytest.*]
ignore_missing_imports = True
back to top