Skip to content

Commit

Permalink
fix: Fix minor bug in get_full_path
Browse files Browse the repository at this point in the history
  • Loading branch information
drorganvidez committed Oct 10, 2024
1 parent f09d0d4 commit c6349b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/modules/hubfile/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def to_dict(self):

def get_full_path(self) -> str:
return os.path.join(
os.getenv("WORKING_DIR"),
os.getenv("WORKING_DIR",""),
"uploads",
f"user_{self.feature_model.data_set.user_id}",
f"dataset_{self.feature_model.data_set_id}",
Expand Down

0 comments on commit c6349b2

Please sign in to comment.