From 4269f992f1834d5399a952d9ad31a06b9823a725 Mon Sep 17 00:00:00 2001 From: Ali Hamdan Date: Sat, 1 Jun 2024 11:57:45 +0200 Subject: [PATCH] Use hyphenated options in black config in pyproject.toml (#12080) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index adcd26252..79f20224d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.black] -line_length = 130 -target_version = ["py310"] -skip_magic_trailing_comma = true +line-length = 130 +target-version = ["py310"] +skip-magic-trailing-comma = true # Exclude protobuf files because they have long line lengths # Ideally, we could configure Black to allow longer line lengths # for just these files, but doesn't seem possible yet.