Just found the following module import in a Python code:
from sqlalchemy.ext.declarative import declarative_base,\
AbstractConcreteBase
I am curious about the backslash \
at the end of the first line. What's the purpose of it? Wouldn't it be the same as the following?
from sqlalchemy.ext.declarative import declarative_base, AbstractConcreteBase