mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 04:35:24 +00:00
Remove special cases for older Python versions
This commit is contained in:
parent
dbf2e471b5
commit
87ae79e0e2
@ -63,10 +63,7 @@ class FileStorage(SQLiteStorage):
|
||||
self.update()
|
||||
|
||||
with self.conn:
|
||||
try: # Python 3.6.0 (exactly this version) is bugged and won't successfully execute the vacuum
|
||||
self.conn.execute("VACUUM")
|
||||
except sqlite3.OperationalError:
|
||||
pass
|
||||
self.conn.execute("VACUUM")
|
||||
|
||||
async def delete(self):
|
||||
os.remove(self.database)
|
||||
|
Loading…
Reference in New Issue
Block a user