mirror of
https://github.com/vale981/jobmanager
synced 2025-03-06 02:11:39 -05:00
fixed error in FuntionCall_Client -> must not pop 'f' away
This commit is contained in:
parent
1c2b744918
commit
0bf3801289
1 changed files with 1 additions and 1 deletions
|
@ -150,10 +150,10 @@ class FunctionCall_Client(JobManager_Client):
|
|||
@staticmethod
|
||||
def func(arg, const_arg, c, m):
|
||||
f = const_arg['f']
|
||||
const_arg.pop('f')
|
||||
f_kwargs = {}
|
||||
f_kwargs.update(arg)
|
||||
f_kwargs.update(const_arg)
|
||||
f_kwargs.pop('f')
|
||||
f_kwargs['__c'] = c
|
||||
f_kwargs['__m'] = m
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue