You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assertcomponent.is_sealed(), "You need to call seal on the component object to make the config objects static, or otherwise set `do_seal_check` to false for this pipeline"
21
21
self.component=component
22
22
self.systems=systems
23
23
self.do_null_checks=do_null_checks
24
24
self.current_system=systems[0]
25
+
self.do_seal_check=do_seal_check
25
26
26
27
defexecute(self) ->None:
28
+
ifself.do_seal_check:
29
+
assertself.component.is_sealed(), (
30
+
"You need to call seal on the component object to make the config objects static, or otherwise set `do_seal_check` to false for this pipeline"
0 commit comments