From: Zsolt Dollenstein Date: Tue, 17 Apr 2018 19:28:25 +0000 (+0100) Subject: use STARS instead of STAR | DOUBLESTAR X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/661908cd0282ff464794a8193475693e9130b866 use STARS instead of STAR | DOUBLESTAR --- 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