From c9043004648f262c0c93d882a606692bdce19cb9 Mon Sep 17 00:00:00 2001 From: Krishnan Prashanth Date: Wed, 28 Aug 2024 00:25:18 -0700 Subject: [PATCH] Adding static decorator --- qa/L0_python_api/testing_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qa/L0_python_api/testing_utils.py b/qa/L0_python_api/testing_utils.py index 4f8c6442b8..fad60fe4ec 100644 --- a/qa/L0_python_api/testing_utils.py +++ b/qa/L0_python_api/testing_utils.py @@ -75,6 +75,7 @@ def teardown_client(client) -> None: client.close() # Sends an inference to an identity model and verifies input == output. + @staticmethod def send_and_test_inference_identity(frontend_client, url: str) -> bool: model_name = "identity" client = TestingUtils.setup_client(frontend_client, url)