pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 12 Nov 2022 02:30:41 +0100
branchstable
changeset 49578 aab3d4c05720
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
profile: prevent a crash when line number is unknown For some unknown reason, `self.lineno` can be None. The previous code crashed in such case, we now ignore the case, as we do for other error in this function. We also fallback to using `-1` in the output when this lack of line number makes it to the display code. The reason of unknown line-numbers is… unknown.

[build-system]
requires = ["setuptools", "wheel"]

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