From 3637a9b7a95d311a0368bcedd0625cdf4f794cde Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Tue, 16 Jul 2024 09:43:51 +0200 Subject: [PATCH] Ruff fix --- python/hopsworks_common/client/hopsworks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/hopsworks_common/client/hopsworks.py b/python/hopsworks_common/client/hopsworks.py index fbdf1c453..af20299df 100644 --- a/python/hopsworks_common/client/hopsworks.py +++ b/python/hopsworks_common/client/hopsworks.py @@ -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