@@ -54,14 +54,14 @@ class ProcessStepDescriber:
5454 step_doc : str = field (default = "" ) # documentation for the process
5555 step_reference : NXCite = field (default = "" ) # NXCite to the paper describing the process
5656 step_note : str | None = field (default = None )
57- use_frames_cache : list [str ] = field (factory = list )
58- # for produced_values dictionary key names in this list, the produced_values are cached
59- # on first run, and reused on subsequent runs. Maybe two chaches, one for per-file and
60- # one for per-execution.
61- use_overall_cache : list [str ] = field (factory = list )
62- # for produced_values dictionary key names in this list, the produced_values are cached
63- # on first run, and reused on subsequent runs. Maybe two chaches, one for per-file and
64- # one for per-execution.
57+ # use_frames_cache: list[str] = field(factory=list)
58+ # # for produced_values dictionary key names in this list, the produced_values are cached
59+ # # on first run, and reused on subsequent runs. Maybe two chaches, one for per-file and
60+ # # one for per-execution.
61+ # use_overall_cache: list[str] = field(factory=list)
62+ # # for produced_values dictionary key names in this list, the produced_values are cached
63+ # # on first run, and reused on subsequent runs. Maybe two chaches, one for per-file and
64+ # # one for per-execution.
6565
6666 def copy (self ) -> ProcessStepDescriber :
6767 raise NotImplementedError ()
0 commit comments