We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e2f0e commit acc58b0Copy full SHA for acc58b0
indra/literature/pubmed_client.py
@@ -1255,7 +1255,7 @@ def get_all_ids(search_term):
1255
# Output is divided by new lines
1256
elements = res.split('\n')
1257
# The CLI automatically retries on errors, subprocess.getoutput unfortunately
1258
- # adds the error message associated with the rety to the output, so we need
+ # adds the error message associated with the retry to the output, so we need
1259
# to filter out non-numeric elements
1260
pmids = [e for e in elements if e.isdigit()]
1261
return pmids
0 commit comments