Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #677 from cisco-open/fix/manager-error-info
Browse files Browse the repository at this point in the history
hotfix ManagerErrorInfo model
  • Loading branch information
jpkrajewski authored May 20, 2024
2 parents 5a6934c + 4a2698d commit 96cda5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions catalystwan/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@


class ManagerErrorInfo(BaseModel):
message: Union[str, None]
details: Union[str, None]
code: Union[str, None]
message: Union[str, None] = None
details: Union[str, None] = None
code: Union[str, None] = None


class CatalystwanException(Exception):
Expand Down

0 comments on commit 96cda5d

Please sign in to comment.