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
During debugging memory usage with @tapastro we found the implementation of _datamodels_open as a class method to be both limiting and lead to confusion.
For example, it would have been useful to change _datamodels_open to only call datamodels.open when:
the input was not a DataModel
or the step was not part of a pipeline
However the second condition is impossible as _datamodels_open is a class method.
The text was updated successfully, but these errors were encountered:
During debugging memory usage with @tapastro we found the implementation of
_datamodels_open
as a class method to be both limiting and lead to confusion.For example, it would have been useful to change
_datamodels_open
to only calldatamodels.open
when:DataModel
However the second condition is impossible as
_datamodels_open
is a class method.The text was updated successfully, but these errors were encountered: