File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ def process_configs(
331331 if val is None :
332332 missing_configs .add (name )
333333 to_return [name ] = None
334- flow_cls ._flow_state [FlowStateItems .CONFIGS ][name ] = None
334+ flow_cls ._flow_state . self_data [FlowStateItems .CONFIGS ][name ] = None
335335 continue
336336 if val .startswith (_CONVERTED_NO_FILE ):
337337 no_file .append (name )
@@ -355,7 +355,9 @@ def process_configs(
355355 click_obj .delayed_config_exception = exc
356356 return None
357357 raise exc from e
358- flow_cls ._flow_state [FlowStateItems .CONFIGS ][name ] = read_value
358+ flow_cls ._flow_state .self_data [FlowStateItems .CONFIGS ][
359+ name
360+ ] = read_value
359361 to_return [name ] = (
360362 ConfigValue (read_value ) if read_value is not None else None
361363 )
@@ -372,7 +374,9 @@ def process_configs(
372374 )
373375 continue
374376 # TODO: Support YAML
375- flow_cls ._flow_state [FlowStateItems .CONFIGS ][name ] = read_value
377+ flow_cls ._flow_state .self_data [FlowStateItems .CONFIGS ][
378+ name
379+ ] = read_value
376380 to_return [name ] = (
377381 ConfigValue (read_value ) if read_value is not None else None
378382 )
You can’t perform that action at this time.
0 commit comments