Skip to content

Commit

Permalink
Made wrong decision in rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
schuylermartin45 committed Jan 11, 2024
1 parent c46d045 commit 37c132e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion anaconda_packaging_utils/api/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ def __init__(self, message: str):
Constructs an API exception
:param message: String description of the issue encountered.
"""
super().__init__(message if len(message) else "An unknown API issue was encountered.")
self.message = message if len(message) else "An unknown API issue was encountered."
super().__init__(self.message)

0 comments on commit 37c132e

Please sign in to comment.