Fixed indentation bug

This commit is contained in:
Saifeddine ALOUI
2025-02-18 09:39:10 +01:00
committed by GitHub
parent f11900451a
commit 6a0366cb24

View File

@@ -303,7 +303,7 @@ class PGKVStorage(BaseKVStorage):
async def drop(self) -> None:
"""Drop the storage"""
drop_sql = SQL_TEMPLATES["DROP_ALL"]
drop_sql = SQL_TEMPLATES["DROP_ALL"]
await self.db.execute(drop_sql)
@final