Skip to content

Commit

Permalink
Fix Boolean values in pyproject.toml config (#1410)
Browse files Browse the repository at this point in the history
Boolean values use lowercase identifiers in TOML.
https://github.com/toml-lang/toml#user-content-boolean
  • Loading branch information
pmeinhardt authored May 13, 2020
1 parent 2432309 commit 45c98cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/compatible_configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 45c98cf

Please sign in to comment.