]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Simplification: only use special-case token retrieval logic when magic trailing comma...
authorJames Addison <jay@jp-hosting.net>
Thu, 4 Feb 2021 17:45:45 +0000 (17:45 +0000)
committerŁukasz Langa <lukasz@langa.pl>
Sat, 20 Feb 2021 18:36:21 +0000 (19:36 +0100)
src/black/__init__.py

index 7f727b18bf0366f4164ad8dc49a5e1c9f3aa8394..56f180ac8a6e61d3ccea881ce9208cb3da4eebf1 100644 (file)
@@ -6632,7 +6632,7 @@ def can_omit_invisible_parens(
 
     penultimate = line.leaves[-2]
     last = line.leaves[-1]
-    if line.should_split or line.magic_trailing_comma:
+    if line.magic_trailing_comma:
         try:
             penultimate, last = last_two_except(line.leaves, omit=omit_on_explode)
         except LookupError: