Fix Boolean values in pyproject.toml config (#1410)

Boolean values use lowercase identifiers in TOML.
https://github.com/toml-lang/toml#user-content-boolean
This commit is contained in:
Paul Meinhardt 2020-05-13 21:51:04 +02:00 committed by GitHub
parent 24323091c8
commit 45c98cf150
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
```