Skip to content

Commit

Permalink
fix typo in dataset.py (#2325)
Browse files Browse the repository at this point in the history
occured -> occurred
  • Loading branch information
eltociear committed Apr 29, 2023
1 parent c905345 commit 100f2e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deeplake/api/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def init(
cause=e.__cause__,
)
raise DatasetCorruptError(
"Exception occured (see Traceback). The dataset maybe corrupted. "
"Exception occurred (see Traceback). The dataset maybe corrupted. "
"Try using `reset=True` to reset HEAD changes and load the previous commit."
) from e
return dataset._reset_and_load(
Expand Down Expand Up @@ -585,7 +585,7 @@ def load(
cause=e.__cause__,
)
raise DatasetCorruptError(
"Exception occured (see Traceback). The dataset maybe corrupted. "
"Exception occurred (see Traceback). The dataset maybe corrupted. "
"Try using `reset=True` to reset HEAD changes and load the previous commit. "
"This will delete all uncommitted changes on the branch you are trying to load."
) from e
Expand Down

0 comments on commit 100f2e3

Please sign in to comment.