Change data lineage format. Now, data lineage information is accessed using name of the file as key.

This commit is contained in:
2025-02-15 17:57:50 +01:00
parent 3123fec9da
commit a516479036

View File

@ -20,7 +20,7 @@ def record_data_lineage(path_to_output_file, projectPath, metadata):
json_dict = {} # Start fresh if file is invalid
# Compute relative output file path and update the JSON object
#relpath_to_output_file = os.path.relpath(path_to_output_file, start=projectPath).replace(os.sep, '/')
#grelpath_to_output_file = os.path.relpath(path_to_output_file, start=projectPath).replace(os.sep, '/')
json_dict[output_file] = metadata
# Write updated JSON back to the file