Skip to content

Commit 212720a

Browse files
committed
Minor
1 parent b3090b1 commit 212720a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

utils/db/sqlite.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ def execute(
5757
parameters: list = None,
5858
commit: bool = False,
5959
):
60-
result = self.cur.execute(expression, parameters or list())
60+
result = self.cur.execute(
61+
expression,
62+
parameters or list(),
63+
)
6164
if commit:
6265
self.conn.commit()
6366
return result

0 commit comments

Comments
 (0)