Skip to content

Commit

Permalink
remove mention of contributing in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwilby committed Nov 13, 2024
1 parent 527edff commit afac690
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions deepsensor/model/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1139,9 +1139,7 @@ def stitch_clipped_predictions(
num_task_dates = len(set([t["time"] for t in tasks]))
if num_task_dates > 1:
raise NotImplementedError(
f"Patchwise prediction does not yet support more than a single date at a time, got {num_task_dates}. \n\
Contributions to the DeepSensor package are very welcome. \n\
Please see the contributing guide at https://alan-turing-institute.github.io/deepsensor/community/contributing.html"
f"Patchwise prediction does not yet support more than a single date at a time, got {num_task_dates}."
)

# tasks should be iterable, if only one is provided, make it a list
Expand Down

0 comments on commit afac690

Please sign in to comment.