Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions sqlalchemy_bind_manager/_repository/async_.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
from .._bind_manager import SQLAlchemyAsyncBind
from .._session_handler import AsyncSessionHandler
from ..exceptions import InvalidConfigError, ModelNotFoundError
from .abstract import SQLAlchemyAsyncRepositoryInterface
from .base_repository import (
BaseRepository,
)
Expand All @@ -55,7 +54,6 @@
class SQLAlchemyAsyncRepository(
Generic[MODEL],
BaseRepository[MODEL],
SQLAlchemyAsyncRepositoryInterface[MODEL],
):
_session_handler: AsyncSessionHandler
_external_session: Union[AsyncSession, None]
Expand Down
2 changes: 0 additions & 2 deletions sqlalchemy_bind_manager/_repository/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
from .._bind_manager import SQLAlchemyBind
from .._session_handler import SessionHandler
from ..exceptions import InvalidConfigError, ModelNotFoundError
from .abstract import SQLAlchemyRepositoryInterface
from .base_repository import (
BaseRepository,
)
Expand All @@ -55,7 +54,6 @@
class SQLAlchemyRepository(
Generic[MODEL],
BaseRepository[MODEL],
SQLAlchemyRepositoryInterface[MODEL],
):
_session_handler: SessionHandler
_external_session: Union[Session, None]
Expand Down