healthchecks_healthchecks/mypy.ini
Pēteris Caune 66d482c4af
Disable a type warning related to statsd having no type hints yet
python-statsd does have a PR for adding type hints, so
hopefully this is temporary.
2024-05-01 11:39:20 +03:00

9 lines
157 B
INI

[mypy]
plugins = mypy_django_plugin.main
[mypy.plugins.django-stubs]
django_settings_module = "hc.settings"
[mypy-statsd.*]
ignore_missing_imports = True