fix: fix 'use-dict-literal' for pylint
This commit is contained in:
parent
dc941bdb31
commit
15ba94fc83
2 changed files with 1 additions and 2 deletions
|
@ -41,4 +41,3 @@ disable=fixme,
|
|||
unspecified-encoding,
|
||||
unused-argument,
|
||||
use-a-generator,
|
||||
use-dict-literal,
|
||||
|
|
|
@ -274,7 +274,7 @@ class BatchMasterView(MasterView):
|
|||
thread = threading.Thread(
|
||||
target=self.populate_thread,
|
||||
args=(batch.uuid,),
|
||||
kwargs=dict(progress=progress),
|
||||
kwargs={"progress": progress},
|
||||
)
|
||||
|
||||
# start thread and show progress page
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue