black.toml
author Manuel Jacob <me@manueljacob.de>
Sat, 30 May 2020 03:46:59 +0200
changeset 44873 47b3c8383cc1
parent 44147 5e84a96d865b
permissions -rw-r--r--
sslutil: set `_canloaddefaultcerts` to `True` if `ssl.SSLContext` is present The `load_default_certs()` method was already present when `ssl.SSLContext` was backported to Python 2.7 (https://hg.python.org/cpython/rev/221a1f9155e2).

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