added comments throughout
This commit is contained in:
@ -1,4 +1,10 @@
|
||||
|
||||
"""
|
||||
This file contains definitions for the LocalPythonConductor, in order to
|
||||
execute Python jobs on the local resource.
|
||||
|
||||
Author(s): David Marchant
|
||||
"""
|
||||
from typing import Any
|
||||
|
||||
from core.correctness.vars import PYTHON_TYPE, PYTHON_FUNC
|
||||
@ -18,8 +24,6 @@ class LocalPythonConductor(BaseConductor):
|
||||
valid_job(job)
|
||||
|
||||
job_function = job[PYTHON_FUNC]
|
||||
job_arguments = job
|
||||
|
||||
job_function(job_arguments)
|
||||
job_function(job)
|
||||
|
||||
return
|
||||
|
Reference in New Issue
Block a user