Skip to content

Commit

Permalink
fix: one more
Browse files Browse the repository at this point in the history
  • Loading branch information
cofin committed Jan 26, 2025
1 parent 47383a4 commit e0b10aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions advanced_alchemy/config/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def __post_init__(self) -> None:

event.listen(Session, "before_flush", touch_updated_timestamp)

def __hash__(self) -> int:
def __hash__(self) -> int: # pragma: no cover
return hash(
(
self.__class__.__qualname__,
Expand Down Expand Up @@ -257,7 +257,7 @@ def get_engine(self) -> EngineT:
del engine_config["json_serializer"]
return self.create_engine_callable(self.connection_string, **engine_config)

def create_session_maker(self) -> Callable[[], SessionT]:
def create_session_maker(self) -> Callable[[], SessionT]: # pragma: no cover
"""Get a session maker. If none exists yet, create one.
Returns:
Expand Down

0 comments on commit e0b10aa

Please sign in to comment.