All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
!XXX doesn't render as code formatting, XXX does
As for vertical whitespace, *Black* tries to render one full expression
or simple statement per line. If this fits the allotted line length,
great.
As for vertical whitespace, *Black* tries to render one full expression
or simple statement per line. If this fits the allotted line length,
great.
If not, *Black* will look at the contents of the first outer matching
brackets and put that in a separate indented line.
If not, *Black* will look at the contents of the first outer matching
brackets and put that in a separate indented line.
# in:
l = [[n for n in list_bosses()], [n for n in list_employees()]]
# in:
l = [[n for n in list_bosses()], [n for n in list_employees()]]
then *Black* will first try to keep them on the same line with the
matching brackets. If that doesn't work, it will put all of them in
separate lines.
then *Black* will first try to keep them on the same line with the
matching brackets. If that doesn't work, it will put all of them in
separate lines.
# in:
def very_important_function(template: str, *variables, *, file: os.PathLike, debug: bool = False):
"""Applies `variables` to the `template` and writes to `file`."""
# in:
def very_important_function(template: str, *variables, *, file: os.PathLike, debug: bool = False):
"""Applies `variables` to the `template` and writes to `file`."""
about it. Alternatively, use [Bugbear](https://github.com/PyCQA/flake8-bugbear)'s
B950 warning instead of E501 and keep the max line length at 80 which
you are probably already using. You'd do it like this:
about it. Alternatively, use [Bugbear](https://github.com/PyCQA/flake8-bugbear)'s
B950 warning instead of E501 and keep the max line length at 80 which
you are probably already using. You'd do it like this:
[flake8]
max-line-length = 80
...
[flake8]
max-line-length = 80
...