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
Currently, functions like write_cls(), write_mms(), etc. have a default clobber=False parameter, meaning that new data is appended to existing files. This can be surprising.
Instead, we should have a default setting of clobber=None, which raises an error if an existing file is encountered. The user then has to specify clobber=True or clobber=False explicitly.
The text was updated successfully, but these errors were encountered:
Currently, functions like
write_cls()
,write_mms()
, etc. have a defaultclobber=False
parameter, meaning that new data is appended to existing files. This can be surprising.Instead, we should have a default setting of
clobber=None
, which raises an error if an existing file is encountered. The user then has to specifyclobber=True
orclobber=False
explicitly.The text was updated successfully, but these errors were encountered: