I'm currently going over a medium-sized code base. In some cases, other modules are imported with a relative path:
from .api.auth import jwt_load_user
and sometimes absolutely
from app.api.auth import jwt_load_user
Is there any difference? Is it just personal taste which style to choose?