From 45c98cf150674dd49cb51d57f8baede4c287f043 Mon Sep 17 00:00:00 2001 From: Paul Meinhardt Date: Wed, 13 May 2020 21:51:04 +0200 Subject: [PATCH] Fix Boolean values in pyproject.toml config (#1410) Boolean values use lowercase identifiers in TOML. https://github.com/toml-lang/toml#user-content-boolean --- docs/compatible_configs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/compatible_configs.md b/docs/compatible_configs.md index b182f57..e826743 100644 --- a/docs/compatible_configs.md +++ b/docs/compatible_configs.md @@ -96,9 +96,9 @@ line_length = 88 ```toml [tool.isort] multi_line_output = 3 -include_trailing_comma = True +include_trailing_comma = true force_grid_wrap = 0 -use_parentheses = True +use_parentheses = true line_length = 88 ``` -- 2.39.2