Closed SergeiOssokine closed 4 years ago
There appears to be a bug in the method to_json_file in the Metadata class. In particular, this line: https://github.com/sxs-collaboration/sxs/blob/main/sxs/metadata/metadata.py#L273 This line creates a directory ending in .json which breaks things. Removing seems to solve the issue.
to_json_file
Metadata
.json
Thanks. It should be path.parent in that line. I'll fix it shortly.
path.parent
There appears to be a bug in the method
to_json_file
in theMetadata
class. In particular, this line: https://github.com/sxs-collaboration/sxs/blob/main/sxs/metadata/metadata.py#L273 This line creates a directory ending in.json
which breaks things. Removing seems to solve the issue.