Skip to content

Commit

Permalink
Fix issue #564
Browse files Browse the repository at this point in the history
  • Loading branch information
rubencalje committed Feb 23, 2023
1 parent cf48f09 commit ea6797e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pastas/stressmodels.py
Original file line number Diff line number Diff line change
Expand Up @@ -1412,7 +1412,6 @@ def __init__(
rfunc = Exponential()
if not isinstance(rfunc, Exponential):
raise NotImplementedError("TarsoModel only supports rfunc Exponential!")
self.oseries = oseries
self.dmin = dmin
self.dmax = dmax
super().__init__(prec=prec, evap=evap, rfunc=rfunc, **kwargs)
Expand Down Expand Up @@ -1483,7 +1482,6 @@ def to_dict(self, series: bool = True) -> dict:
data = super().to_dict(series)
data["dmin"] = self.dmin
data["dmax"] = self.dmax
data["oseries"] = self.oseries
return data

@staticmethod
Expand Down

0 comments on commit ea6797e

Please sign in to comment.