Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
if config['param_st_duration'] == "":
    param_st_duration = None
else:
    param_st_duration = config['param_st_duration']

 

Case of a STRING parameter

...

Code Block
if config['param_regularize'] == "":
    param_regularize = None
else:
    param_regularize = config['param_regularize']

and enter the parameter as follows in BL:

...