black.toml
author Yuya Nishihara <yuya@tcha.org>
Tue, 22 Oct 2019 11:38:43 +0900
changeset 44188 1f9e6fbdd3e6
parent 44147 5e84a96d865b
permissions -rw-r--r--
rust-cpython: remove useless wrappers from PyLeaked, just move by map() This series prepares for migrating to the upstreamed version of PySharedRef. I found this last batch wasn't queued while rewriting the callers. While Option<T> was historically needed, it shouldn't be required anymore. I wasn't aware that each filed can be just moved.

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