Skip to content

Commit

Permalink
Replace absolute imports with relative imports in sqlmodel.orm.session
Browse files Browse the repository at this point in the history
  • Loading branch information
Arseny committed Aug 29, 2021
1 parent 2a3d051 commit 894c60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlmodel/orm/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
from sqlalchemy.orm import Query as _Query
from sqlalchemy.orm import Session as _Session
from sqlalchemy.sql.base import Executable as _Executable
from sqlmodel.sql.expression import Select, SelectOfScalar
from typing_extensions import Literal

from ..engine.result import Result, ScalarResult
from ..sql.base import Executable
from ..sql.expression import Select, SelectOfScalar

_TSelectParam = TypeVar("_TSelectParam")

Expand Down

0 comments on commit 894c60d

Please sign in to comment.