Skip to content

Commit

Permalink
fix: fixed err message in transform
Browse files Browse the repository at this point in the history
  • Loading branch information
jlerat committed Dec 14, 2024
1 parent d0ea62d commit 1f8d957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hydrodiy/stat/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ def __init__(self):
def get_xmax(self):
xmax = self.constants.values[0]
if np.isnan(xmax):
errmess = "xmar is nan. It must be set to a proper value."
errmess = "xmax is nan. It must be set to a proper value."
raise ValueError(errmess)
return xmax

Expand Down

0 comments on commit 1f8d957

Please sign in to comment.