Skip to content

Commit

Permalink
remove unnecessary code
Browse files Browse the repository at this point in the history
remove print statement
  • Loading branch information
dbrakenhoff committed Jun 25, 2024
1 parent e9f91ef commit b97fa63
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions pastastore/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,9 +419,6 @@ def get_tmin_tmax(
mld = self.conn.get_models(
n,
return_dict=True,
progressbar=False,
update_ts_settings=False,
squeeze=True,
)
tmintmax.loc[n, "tmin"] = mld["settings"]["tmin"]
tmintmax.loc[n, "tmax"] = mld["settings"]["tmax"]
Expand Down
1 change: 0 additions & 1 deletion tests/test_003_pastastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def test_iter_stresses(pstore):

@pytest.mark.dependency()
def test_get_tmintmax(pstore):
print(pstore.model_names)
ostt = pstore.get_tmin_tmax("oseries")
assert ostt.at["oseries1", "tmin"] == pd.Timestamp("2010-01-14")
sttt = pstore.get_tmin_tmax("stresses")
Expand Down

0 comments on commit b97fa63

Please sign in to comment.