Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use warnings.warn instead of logging.warn when loading Problem from H…
…DF5 without an Objective (#1253) Allows using warnings filter to get rid of this message. ```python import warnings warnings.filterwarnings("ignore", category=UserWarning, message=".*You are loading a problem.*", module="pypesto.store.read_from_hdf5") ```
- Loading branch information