mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +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.
6 lines
123 B
Python
6 lines
123 B
Python
from statistics import (
|
|
median,
|
|
variance,
|
|
)
|
|
|
|
print( median,variance)#poorly formatted, but shouldn't be affected |