Skip to content

Commit

Permalink
fix typo. Need test to catch this (#258)
Browse files Browse the repository at this point in the history
Co-authored-by: Miguel Jimenez <mjimen17@jhu.edu>
  • Loading branch information
Miguel Jimenez and Mikejmnez authored Sep 2, 2022
1 parent 8eb26c9 commit b825cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oceanspy/subsample.py
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ def survey_stations(
if "YRange" not in kwargs:
kwargs["YRange"] = [_np.min(Y_surv), _np.max(Y_surv)]
if "XRange" not in kwargs:
kwargs["XRange"] = [_np.min(X_surv), _np.max(Y_surv)]
kwargs["XRange"] = [_np.min(X_surv), _np.max(X_surv)]
if "add_Hbdr" not in kwargs:
kwargs["add_Hbdr"] = True
od = od.subsample.cutout(**kwargs)
Expand Down

0 comments on commit b825cea

Please sign in to comment.