models: avoid resetting state in set_worktree()
[git-cola.git] / .flake8
blob7d867ce333e6f9134036f761c867613afe0a434c
1 [flake8]
2 doctests = true
3 max-line-length = 88
4 ignore =
5         # W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
6         W503
7         # W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545
8         W504
9         # Black creates whitespace before colon
10         E203