Skip to content

Commit

Permalink
Change List to list
Browse files Browse the repository at this point in the history
  • Loading branch information
rhatgadkar-goog committed Jan 31, 2025
1 parent a59cd2f commit 7f0e89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/mocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def get_pem_certs(self) -> tuple[str, str, str]:
).decode("UTF-8")
return (pem_root, pem_intermediate, pem_server)

def generate_pem_certificate_chain(self, pub_key: str) -> tuple[str, List[str]]:
def generate_pem_certificate_chain(self, pub_key: str) -> tuple[str, list[str]]:
"""Generate the CA certificate and certificate chain for the AlloyDB instance."""
root_cert, intermediate_cert, server_cert = self.get_pem_certs()
# encode public key to bytes
Expand Down

0 comments on commit 7f0e89c

Please sign in to comment.