view pyproject.toml @ 51882:2391a5fa111e

store: fix a signature mismatch for a vfs subclass This was flagged by PyCharm. I'm not sure why pytype doesn't catch this- it's not excluded from the modules that are currently checked.
author Matt Harbison <matt_harbison@yahoo.com>
date Sun, 22 Sep 2024 17:06:31 -0400
parents 58fe6d127a01
children d4b275587847
line wrap: on
line source

[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