Fix db sync

This commit is contained in:
BarsTiger
2023-10-25 13:22:33 +03:00
parent 4c7a885665
commit 1c2ee36edc

View File

@@ -48,7 +48,8 @@ async def pull():
for table in db.__dict__.keys(): for table in db.__dict__.keys():
new_table = SqliteDict(DB + 'b', tablename=table) new_table = SqliteDict(DB + 'b', tablename=table)
for key in new_table.keys(): for key in new_table.keys():
getattr(db, table)[key] = new_table[key] if key is not None:
getattr(db, table)[key] = new_table[key]
new_table.close() new_table.close()
await db.write() await db.write()