mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Update test data and reduce manual language level setup GitOrigin-RevId: d6ddec1b2b29a2b7f1a34cfb5982fd975de78d65
9 lines
133 B
Python
9 lines
133 B
Python
def bad_autoformat_example():
|
|
a = 5
|
|
b = 10
|
|
print(a, b)
|
|
(a, b) = b, a
|
|
print(a, b)
|
|
a, b = b, a
|
|
print(a, b)
|