From a51d1a0b44c936f3ab79ffa4616afa7681f57f10 Mon Sep 17 00:00:00 2001 From: Mark <1515135+MarkKoz@users.noreply.github.com> Date: Sat, 4 Jun 2022 18:01:39 -0700 Subject: Fix force-exclude option for black It should be a string, not a list. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3