X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/5192ed484bdbe507a8dd03dc31f93e4efec95b19..661908cd0282ff464794a8193475693e9130b866:/black.py diff --git a/black.py b/black.py index 7c487f6..0323f67 100644 --- a/black.py +++ b/black.py @@ -1364,7 +1364,7 @@ def whitespace(leaf: Leaf) -> str: # noqa C901 if not prevp or prevp.type == token.LPAR: return NO - elif prev.type in {token.EQUAL, token.STAR, token.DOUBLESTAR}: + elif prev.type in {token.EQUAL} | STARS: return NO elif p.type == syms.decorator: @@ -2165,7 +2165,7 @@ def is_python36(node: Node) -> bool: and n.children[-1].type == token.COMMA ): for ch in n.children: - if ch.type == token.STAR or ch.type == token.DOUBLESTAR: + if ch.type in STARS: return True return False