Skip to content

Commit

Permalink
fix missing return type
Browse files Browse the repository at this point in the history
  • Loading branch information
giuppep committed Apr 16, 2024
1 parent bb4259b commit 1108c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flask_session/postgresql/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,6 @@ def _upsert_session(
),
)

def _drop_table(self):
def _drop_table(self) -> None:
with self._get_cursor() as cur:
cur.execute(self._queries.drop_sessions_table)

0 comments on commit 1108c74

Please sign in to comment.