We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a368b50 commit 2cab67aCopy full SHA for 2cab67a
mergin/test/test_client.py
@@ -1389,7 +1389,9 @@ def _get_table_row_count(db_file, table):
1389
try:
1390
con_verify = sqlite3.connect(db_file)
1391
cursor_verify = con_verify.cursor()
1392
- cursor_verify.execute("select count(*) from {};".format(table)) # nosec B608 - internal test helper, not using user input
+ cursor_verify.execute(
1393
+ "select count(*) from {};".format(table)
1394
+ ) # nosec B608 - internal test helper, not using user input
1395
return cursor_verify.fetchone()[0]
1396
finally:
1397
cursor_verify.close()
0 commit comments