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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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