Skip to content

Commit

Permalink
chg: Make lint on python 3.13 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Dec 16, 2024
1 parent 43d8063 commit 68cdaea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions website/web/redisserverssession.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ def on_update(self) -> None: # type: ignore[no-untyped-def]
self.modified = True

CallbackDict.__init__(self, initial, on_update)
super().__init__(initial, on_update)
super().__init__()
self.redis: Redis = redis # type: ignore[type-arg]
self.key_prefix: str = key_prefix
if sid is None:
Expand Down

0 comments on commit 68cdaea

Please sign in to comment.