black/tests/data/remove_parens.py
2019-05-15 21:11:04 -07:00

11 lines
78 B
Python

print((1))
x = (1)
x = (1.2)
(x) = (3)
# output
print(1)
x = 1
x = 1.2
x = 3