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
MatPipe load should not work if the pipe was previously defined in an instance. It should only work as a static/classmethod usage, not as an instance usage. This is because it is more reliable to load and define matpipes entirely at one time rather than mixing and matching constituent classes through __init__ and __load__
Good:
MatPipe.load(file)
Bad:
pipe = MatPipe(**some_config)
pipe.load(file)
The text was updated successfully, but these errors were encountered:
MatPipe load should not work if the pipe was previously defined in an instance. It should only work as a static/classmethod usage, not as an instance usage. This is because it is more reliable to load and define matpipes entirely at one time rather than mixing and matching constituent classes through
__init__
and__load__
Good:
Bad:
The text was updated successfully, but these errors were encountered: