Skip to content

Commit

Permalink
Add missing default
Browse files Browse the repository at this point in the history
  • Loading branch information
abuabraham-ttd committed Dec 27, 2024
1 parent 639d95e commit 4ebb756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/confidential_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, error_name, provider, extra_message=None):
"GCP": "https://unifiedid.com/docs/guides/operator-private-gcp-confidential-space#uid2-operator-error-codes",
}
url = urls.get(provider)
super().__init__(f"{error_name} \n" + (extra_message if extra_message else "") + f"\nVisit {url} for more details")
super().__init__(f"{error_name}\n" + (extra_message if extra_message else "") + f"\nVisit {url} for more details")

class MissingInstanceProfile(ConfidentialComputeStartupException):
def __init__(self, cls):
Expand Down

0 comments on commit 4ebb756

Please sign in to comment.