Files

16 lines
291 B
INI
Raw Permalink Normal View History

2021-07-23 23:52:25 +02:00
[isort]
profile = black
skip = .venv,.tox
[flake8]
# E203: whitespace before colon on list slice: mylist[1 : 2]
# E501: line too long (black knows better)
extend-ignore = E203,E501
extend-exclude = .venv
[mypy]
no_implicit_optional = True
2021-07-24 00:06:05 +02:00
2021-09-25 11:54:56 +02:00
[mypy-xmltodict.*]
2021-07-24 00:06:05 +02:00
ignore_missing_imports = True