Skip to content

Commit 12aedb9

Browse files
committed
Fixed pylint CQ issues
1 parent 784434c commit 12aedb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/class_sqlThread.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ def versionThree(self):
9494
'In messages.dat database, adding tag field to'
9595
' the inventory table.')
9696
item = '''ALTER TABLE inventory ADD tag blob DEFAULT '' '''
97-
parameters = ''
98-
self.cur.execute(item, parameters)
97+
param = ''
98+
self.cur.execute(item, param)
9999
item = '''update settings set value=? WHERE key='version';'''
100100
parameters = (4,)
101101
self.cur.execute(item, parameters)
@@ -184,8 +184,8 @@ def versionEight(self):
184184
'In messages.dat database, adding sighash field to'
185185
' the inbox table.')
186186
item = '''ALTER TABLE inbox ADD sighash blob DEFAULT '' '''
187-
parameters = ''
188-
self.cur.execute(item, parameters)
187+
param = ''
188+
self.cur.execute(item, param)
189189
item = '''update settings set value=? WHERE key='version';'''
190190
parameters = (9,)
191191
self.cur.execute(item, parameters)

0 commit comments

Comments
 (0)