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,
|
unspecified-encoding,
|
||||||
unused-argument,
|
unused-argument,
|
||||||
use-a-generator,
|
use-a-generator,
|
||||||
use-dict-literal,
|
|
||||||
|
|
|
@ -274,7 +274,7 @@ class BatchMasterView(MasterView):
|
||||||
thread = threading.Thread(
|
thread = threading.Thread(
|
||||||
target=self.populate_thread,
|
target=self.populate_thread,
|
||||||
args=(batch.uuid,),
|
args=(batch.uuid,),
|
||||||
kwargs=dict(progress=progress),
|
kwargs={"progress": progress},
|
||||||
)
|
)
|
||||||
|
|
||||||
# start thread and show progress page
|
# start thread and show progress page
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue