We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5cd4ee2 + 9e77fd2 commit 0190ac0Copy full SHA for 0190ac0
main.py
@@ -24,7 +24,7 @@ def get_zotero_corpus(id:str,key:str) -> list[dict]:
24
corpus = [c for c in corpus if c['data']['abstractNote'] != '']
25
def get_collection_path(col_key:str) -> str:
26
if p := collections[col_key]['data']['parentCollection']:
27
- return get_collection_path(p) + ' / ' + collections[col_key]['data']['name']
+ return get_collection_path(p) + '/' + collections[col_key]['data']['name']
28
else:
29
return collections[col_key]['data']['name']
30
for c in corpus:
0 commit comments