Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt committed Nov 12, 2024
1 parent f9f970b commit ae4b2c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eo_tides/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def _model_tides(
)

# TODO: Return constituents
print(model, amp.shape)
# print(model, amp.shape)
# print(amp.shape, ph.shape, c)
# print(pd.DataFrame({"amplitude": amp}))

Expand Down
4 changes: 2 additions & 2 deletions eo_tides/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ def _standardise_time(

def _standardise_models(
model: str | list[str],
directory: str,
directory: str | os.PathLike,
ensemble_models: list[str] | None = None,
) -> tuple[list, list, list]:
) -> tuple[list[str], list[str], list[str] | None]:
"""
Take an input model name or list of names, and return a list
of models to process, requested models, and ensemble models,
Expand Down

0 comments on commit ae4b2c9

Please sign in to comment.