From 661908cd0282ff464794a8193475693e9130b866 Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Tue, 17 Apr 2018 20:28:25 +0100 Subject: [PATCH] use STARS instead of STAR | DOUBLESTAR --- black.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2