You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For imports that don't have inline comments, we can combine and reorder their names. This is a common request, and although I don't want to do much in the way of formatting, we can support the common case pretty easily.
from os import signal
from os import path
becomes
from os import path, signal
Sorting names within a single statement is a simple case of this as well.
The text was updated successfully, but these errors were encountered:
For imports that don't have inline comments, we can combine and reorder their names. This is a common request, and although I don't want to do much in the way of formatting, we can support the common case pretty easily.
becomes
Sorting names within a single statement is a simple case of this as well.
The text was updated successfully, but these errors were encountered: