From dafad280c19ce1a4eb77f007ad31c189a9fe867b Mon Sep 17 00:00:00 2001 From: Askill Date: Sun, 9 Jan 2022 20:25:57 +0100 Subject: [PATCH] added black formatting --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..6920464 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +# Example configuration for Black. + +# NOTE: you have to use single-quoted strings in TOML for regular expressions. +# It's the equivalent of r-strings in Python. Multiline strings are treated as +# verbose regular expressions by Black. Use [ ] to denote a significant space +# character. + +[tool.black] +line-length = 140 +target-version = ['py36', 'py37', 'py38', 'py39'] +include = '\.pyi?$' \ No newline at end of file