minor fix

This commit is contained in:
Shivam Mehta
2024-03-02 12:48:54 +00:00
parent 294c6b1327
commit 4c35836fa5

View File

@@ -144,7 +144,7 @@ def main():
if args.output_folder is not None: if args.output_folder is not None:
output_folder = Path(args.output_folder) output_folder = Path(args.output_folder)
else: else:
output_folder = Path("data") / "temp" / cfg["name"] / "durations" output_folder = Path("data") / "processed_data" / cfg["name"] / "durations"
if os.path.exists(output_folder) and not args.force: if os.path.exists(output_folder) and not args.force:
print("Folder already exists. Use -f to force overwrite") print("Folder already exists. Use -f to force overwrite")