Lately have seen imports like this
from module import (function, another_function, 
                    another_function)
Seemingly this has been done to be able to stretch the import statement over more than one line. In cases like this I usually just import like so
from module import function, another_function, \
            another_function
What exactly are the parentheses doing in this case and are they considered to be bad practice?
 
    