Skip to content

Commit

Permalink
Add universe_domain to creds.py
Browse files Browse the repository at this point in the history
Resolves issue #126
  • Loading branch information
ryanlewist authored Mar 21, 2024
1 parent ded6181 commit 5510f4c
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 5510f4c

Please sign in to comment.