Skip to content

Commit

Permalink
Merge pull request #137 from ryanlewist/add-universe-domain-126
Browse files Browse the repository at this point in the history
Add universe_domain to creds.py
  • Loading branch information
omarryhan authored Mar 22, 2024
2 parents ded6181 + 5510f4c commit dbc84b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aiogoogle/auth/creds.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ class ServiceAccountCreds(_dict):
def __init__(
self, type=None, project_id=None, private_key_id=None, private_key=None,
client_email=None, client_id=None, auth_uri=None, token_uri=None, auth_provider_x509_cert_url=None,
client_x509_cert_url=None, subject=None, scopes=None, additional_claims=None
client_x509_cert_url=None, subject=None, scopes=None, additional_claims=None, universe_domain='googleapis.com'
):
self.type = type
self.project_id = project_id
Expand All @@ -292,3 +292,4 @@ def __init__(
self.subject = subject
self.scopes = scopes
self.additional_claims = additional_claims or {}
self.universe_domain = universe_domain

0 comments on commit dbc84b5

Please sign in to comment.