Skip to content

Commit 88a42f1

Browse files
committed
Update default input directory to ../sfs-jsondata for improved compatibility and avoiding documents inside Git repo
1 parent c87f650 commit 88a42f1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sfs_processor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,8 @@ def main():
652652
# For backward compatibility
653653
json_dir = Path(sys.argv[1])
654654
else:
655-
json_dir = script_dir / 'json'
655+
# Default input directory is always ../sfs-jsondata
656+
json_dir = script_dir.parent / 'sfs-jsondata'
656657

657658
# Check if custom output directory is provided
658659
if args.output:

0 commit comments

Comments
 (0)