Skip to content

Commit

Permalink
apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
paaragon committed Jan 16, 2025
1 parent e7fda82 commit cc945cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateway/api/services/result_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit cc945cc

Please sign in to comment.