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
Is your feature request related to a problem? Please describe.
Not related to a problem, but related to separating out readers from things holding the read data - #335
Right now, if a script is doing, e.g.,
importserpentToolsr=serpentTools.ResultsReader(...)
r. read()
# do stuffr.resdata["colKeff"]
and we then change it such that ResultsReader does not store the read data (see #335), then the script would break because the results reader does not store result data.
I think an intermediate solution would be to return self from r.read and encourage people to use the following pattern
Is your feature request related to a problem? Please describe.
Not related to a problem, but related to separating out readers from things holding the read data - #335
Right now, if a script is doing, e.g.,
and we then change it such that
ResultsReader
does not store the read data (see #335), then the script would break because the results reader does not store result data.I think an intermediate solution would be to return
self
fromr.read
and encourage people to use the following patternThe text was updated successfully, but these errors were encountered: