mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
Namely, it automatically surrounds them with parentheses and inserts a trailing comma after the last imported name if necessary, e.g. when several "from" imports with the same source were combined into a single long statement that needs to be wrapped.
4 lines
132 B
Python
4 lines
132 B
Python
from statistics import median
|
|
from statistics import variance
|
|
|
|
print( median,variance)#poorly formatted, but shouldn't be affected |