yapf
yapf copied to clipboard
Broken parser: `case` is a valid variable name
case = 42
match case:
case 42:
print('answer')
The snippet above will be formatted with yapf
as follows.
case = 42
match
case:
case 42:
print('answer')