Skip to content

Commit

Permalink
removed trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
RickytheGuy committed Nov 23, 2024
1 parent 9b9e9a5 commit 7893483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basininflow/inflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def _guess_variable_name(var_name: str, possible_matches: list) -> str:
if ds.ndim == 3:
pass
elif ds.ndim == 4:
inflow_df = np.where(np.isnan(inflow_df[:, 0, :]), inflow_df[:, 1, :], inflow_df[:, 0, :]),
inflow_df = np.where(np.isnan(inflow_df[:, 0, :]), inflow_df[:, 1, :], inflow_df[:, 0, :])
else:
raise ValueError(f"Unknown number of dimensions: {ds.ndim}")

Expand Down

0 comments on commit 7893483

Please sign in to comment.