Skip to content

Commit d63c7d0

Browse files
committedSep 29, 2024
Added Version to versions table
1 parent ff17e02 commit d63c7d0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎TGConvertor/sessions/pyro.py

+4
Original file line numberDiff line numberDiff line change
@@ -199,3 +199,7 @@ async def to_file(self, path: Union[Path, str]):
199199
)
200200
await db.execute(sql, params)
201201
await db.commit()
202+
sql = "INSERT INTO version VALUES (?)"
203+
params = (3,)
204+
await db.execute(sql, params)
205+
await db.commit()

0 commit comments

Comments
 (0)