Update using_black_with_other_tools.md to ensure flake8 configuration examples are consistant (#4157)

This commit is contained in:
Kevin Paulson 2024-01-19 18:54:32 -05:00 committed by GitHub
parent 9a331d606f
commit 7f60f3dbd7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -145,7 +145,7 @@ There are a few deviations that cause incompatibilities with _Black_.
```
max-line-length = 88
extend-ignore = E203
extend-ignore = E203, E704
```
#### Why those options above?
@ -184,7 +184,7 @@ extend-ignore = E203, E704
```ini
[flake8]
max-line-length = 88
extend-ignore = E203
extend-ignore = E203, E704
```
</details>
@ -195,7 +195,7 @@ extend-ignore = E203
```ini
[flake8]
max-line-length = 88
extend-ignore = E203
extend-ignore = E203, E704
```
</details>