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.
1 parent 9713bd8 commit 240cf7cCopy full SHA for 240cf7c
1 file changed
server/workers/api/src/apis/pubmed.py
@@ -97,7 +97,7 @@ def get(self):
97
def sanitize_params(params):
98
article_types = params.get("article_types")
99
if article_types:
100
- [at.replace("\'", "'") for at in article_types]
+ article_types = [at.replace("'", "'") for at in article_types]
101
params["article_types"] = article_types
102
return params
103
0 commit comments