Skip to content

Commit 9683ee4

Browse files
committed
minor fix
1 parent fe5b4ff commit 9683ee4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/scripts/single_file_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def invoke(self):
4949

5050
# Save parsed Data
5151
if self.save_parsed_data:
52-
file_name = uuid.uuid4()
52+
file_name = str(uuid.uuid4())
5353
file_path = os.path.join(self.parsed_data_dir, file_name) + '.json'
5454
Path(self.parsed_data_dir).mkdir(parents=True, exist_ok=True)
5555
with open(file_path, 'w', encoding='utf-8') as f:

0 commit comments

Comments
 (0)