From cd58aff46efe4ef9c2796ac490e56381d81ab998 Mon Sep 17 00:00:00 2001 From: MKLepium Date: Wed, 22 Nov 2023 00:35:20 +0100 Subject: [PATCH] removed assignment to unused variable --- python/tests/hopsworks/test_login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/hopsworks/test_login.py b/python/tests/hopsworks/test_login.py index 55f822937..bec4ba729 100644 --- a/python/tests/hopsworks/test_login.py +++ b/python/tests/hopsworks/test_login.py @@ -229,6 +229,6 @@ def test_login_api_key_as_environ(self): def test_login_newline_in_api_key(self): try: imaginaryApiKey = "ImaginaryApiKey\n" - project = hopsworks.login(api_key_value=imaginaryApiKey) + hopsworks.login(api_key_value=imaginaryApiKey) except Exception as e: self.assertNotIn(imaginaryApiKey.strip(), str(e))