Skip to content

Commit

Permalink
fixed missing backend import and changed results folder name
Browse files Browse the repository at this point in the history
  • Loading branch information
Fan authored and jpodivin committed Oct 11, 2024
1 parent e46233f commit 495b447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/spells.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def make_tar(name: str, source: Path, destination: Path) -> Path:
"""
tar_path = destination / name
with tarfile.open(tar_path, "w:gz") as tar_f:
tar_f.add(source, arcname=name)
tar_f.add(source, arcname="results")

return tar_path

Expand Down

0 comments on commit 495b447

Please sign in to comment.