Skip to content

Commit

Permalink
chore: fcdo remove dataset subtype indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvanr committed Aug 28, 2023
1 parent 31b8b52 commit 3923b87
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion direct_indexing/processing/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ def convert_and_save_xml_to_processed_json(filepath, filetype, codelist, currenc
with open(json_path, 'w') as json_file:
json.dump(data, json_file)

dataset_subtypes(filetype, data, json_path)
if not settings.FCDO_INSTANCE:
dataset_subtypes(filetype, data, json_path)

return json_path

Expand Down

0 comments on commit 3923b87

Please sign in to comment.