Skip to content

Commit

Permalink
Ruff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aversey committed Jul 16, 2024
1 parent c238ec8 commit 3637a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/hopsworks_common/client/hopsworks.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def _convert_jks_to_pem(self, jks_path, keystore_pw):
ca_certs = ""

# Convert CA Certificates into PEM format and append to string
for alias, c in ks.certs.items():
for _alias, c in ks.certs.items():
ca_certs = ca_certs + self._bytes_to_pem_str(c.cert, "CERTIFICATE")
return ca_certs

Expand Down

0 comments on commit 3637a9b

Please sign in to comment.