diff --git a/app.py b/app.py index 2cc85bd..900d13f 100644 --- a/app.py +++ b/app.py @@ -853,7 +853,7 @@ def call_extractor(text: str, lab: str = "AHK"): @app.post("/parse") async def parse_endpoint(text: str = Body(..., embed=True)): lab = parse_report(text) - result = await call_extractor(text, lab=lab) + result = call_extractor(text, lab=lab) return result PARSERS = {