black.toml
author Manuel Jacob <me@manueljacob.de>
Wed, 08 Jul 2020 08:57:21 +0200
branchstable
changeset 44842 2c0043977b6d
parent 44232 5e84a96d865b
permissions -rw-r--r--
archival: abort if compression method is unavailable `tarfile.CompressionError` is documented to be the "exception for unavailable compression methods". Also, make tests conditional on whether the lzma module is available or not.

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true