aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2022-06-04 18:01:39 -0700
committerGravatar Mark <[email protected]>2022-06-04 18:01:39 -0700
commita51d1a0b44c936f3ab79ffa4616afa7681f57f10 (patch)
treeb42cc745feaa81067df4ef62553c507226750aba
parentRemove nsjail log blacklist (diff)
Fix force-exclude option for black
It should be a string, not a list.
-rw-r--r--pyproject.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 7a13370..e0a3d26 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -65,7 +65,7 @@ relative_files = true
[tool.black]
line-length = 100
target-version = ["py310"]
-force-exclude = ["snekbox/config_pb2.py"]
+force-exclude = "snekbox/config_pb2.py"
[tool.isort]
line_length = 100