Skip to content

Commit

Permalink
refactor: update order of import
Browse files Browse the repository at this point in the history
order of zotero imports needs to be "primaer", "sekundaer","tertiaer"
  • Loading branch information
babslgam committed Apr 4, 2024
1 parent 4ad1b80 commit d4bae88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis_ontology/scripts/import_zotero_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def import_work_collections(zot, coll_id, include_subs=True):

required_subs_raw = os.environ.get("ZOTERO_SUB_COLLECTIONS", False)
if not required_subs_raw:
required_subs = ["tertiaer", "primaer", "sekundaer"]
required_subs = ["primaer", "sekundaer", "tertiaer"]
else:
required_subs = [k.replace(" ", "") for k in required_subs_raw.split(",")]

Expand Down

0 comments on commit d4bae88

Please sign in to comment.