From cc945ccfc598c1a08c955fda2866f0e82953974b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Arag=C3=B3n?= Date: Thu, 16 Jan 2025 17:42:54 +0100 Subject: [PATCH] apply review suggestions --- gateway/api/services/result_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/api/services/result_storage.py b/gateway/api/services/result_storage.py index 028dad187..d706e7d0d 100644 --- a/gateway/api/services/result_storage.py +++ b/gateway/api/services/result_storage.py @@ -24,7 +24,7 @@ def __init__(self, username: str): ) os.makedirs(self.user_results_directory, exist_ok=True) - def __build_result_path(self, job_id: str) -> str: + def __get_result_path(self, job_id: str) -> str: """Construct the full path for a result file.""" return os.path.join( self.user_results_directory, f"{job_id}{self.RESULT_FILE_EXTENSION}"