We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe5b4ff commit 9683ee4Copy full SHA for 9683ee4
app/scripts/single_file_processor.py
@@ -49,7 +49,7 @@ def invoke(self):
49
50
# Save parsed Data
51
if self.save_parsed_data:
52
- file_name = uuid.uuid4()
+ file_name = str(uuid.uuid4())
53
file_path = os.path.join(self.parsed_data_dir, file_name) + '.json'
54
Path(self.parsed_data_dir).mkdir(parents=True, exist_ok=True)
55
with open(file_path, 'w', encoding='utf-8') as f:
0 commit comments