X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/35e8d1560d68e8113ff926a9f832582f8f4a694f..5918a016ff82e5fa12097d07b1624a89ec4e60ac:/src/black/__init__.py diff --git a/src/black/__init__.py b/src/black/__init__.py index 49d088b..cf25787 100644 --- a/src/black/__init__.py +++ b/src/black/__init__.py @@ -5761,6 +5761,13 @@ def is_simple_decorator_trailer(node: LN, last: bool = False) -> bool: and node.children[0].type == token.DOT and node.children[1].type == token.NAME ) + # last trailer can be an argument-less parentheses pair + or ( + last + and len(node.children) == 2 + and node.children[0].type == token.LPAR + and node.children[1].type == token.RPAR + ) # last trailer can be arguments or ( last