Skip to content

Commit

Permalink
Fix deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
pboers1988 committed Jul 3, 2023
1 parent 117a116 commit 9526281
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orchestrator/utils/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ def __init__(self, message: str, details: JSON = None) -> None:


@deprecated(
"Renamed the error 'ProcessFailureError', `from orchestrator.errors import ProcessFailureError` removing in version 1.3.0"
"Renamed the error 'ProcessFailure', `from orchestrator.errors import ProcessFailureError` removing in version 1.3.0"
)
class ProcessFailureException(ProcessFailureError): # noqa: N818
class ProcessFailure(ProcessFailureError): # noqa: N818
pass


Expand Down

0 comments on commit 9526281

Please sign in to comment.