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
According to the BMI spec, the filename argument for the BMI initialize method must not be optional and must be a string. Right now BmiHeat.initialize accepts either None, a file-like object, or a string. I think this should be changed so that it only accepts a string that is a path to a configuration file.
According to the BMI spec, the filename argument for the BMI initialize method must not be optional and must be a string. Right now
BmiHeat.initialize
accepts eitherNone
, a file-like object, or a string. I think this should be changed so that it only accepts a string that is a path to a configuration file.i.e.
Actually, in looking at what's there now, I think there's also a bug.
Heat.from_file_like
must take a stream, not a stringi.e.
should be
The text was updated successfully, but these errors were encountered: