I see there are two ways of declaring a big import clause:
from lib.backends.my_lib import (
MyClassA, MyClassB, MyClassC, MyClassD
)
and
from lib.backends.my_lib import MyClassA, \
MyClassB, MyClassC, MyClassD
I personally prefer the first one and I'd like to force this pattern into pylint.
Is there any way of doing so?