Skip to content

Commit 2cab67a

Browse files
committed
black
1 parent a368b50 commit 2cab67a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mergin/test/test_client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,9 @@ def _get_table_row_count(db_file, table):
13891389
try:
13901390
con_verify = sqlite3.connect(db_file)
13911391
cursor_verify = con_verify.cursor()
1392-
cursor_verify.execute("select count(*) from {};".format(table)) # nosec B608 - internal test helper, not using user input
1392+
cursor_verify.execute(
1393+
"select count(*) from {};".format(table)
1394+
) # nosec B608 - internal test helper, not using user input
13931395
return cursor_verify.fetchone()[0]
13941396
finally:
13951397
cursor_verify.close()

0 commit comments

Comments
 (0)