diff options
Diffstat (limited to 'fatcat_scholar/search.py')
-rw-r--r-- | fatcat_scholar/search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fatcat_scholar/search.py b/fatcat_scholar/search.py index e586bee..9bc5699 100644 --- a/fatcat_scholar/search.py +++ b/fatcat_scholar/search.py @@ -133,7 +133,7 @@ def transform_es_results(resp: Response) -> List[dict]: # add ScholarDoc object as a helper (eg, to call python helpers) try: h["_obj"] = ScholarDoc.parse_obj(h) - except: + except Exception: pass return results |