how would I make python_task.py configurable? I im...
# general
b
how would I make python_task.py configurable? I imagine it's not as simple as adding a
Copy code
@classmethod
  def register_options(cls, register):
    super(PythonRun, cls).register_options(register)
    # stuff...
to it?