From ae71c814ec7287cd5da96bba247cec03ae904796 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 15 Feb 2021 21:55:34 -0800 Subject: fmt and lint fixes (including one actual bug) --- fatcat_scholar/web.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fatcat_scholar/web.py') diff --git a/fatcat_scholar/web.py b/fatcat_scholar/web.py index 8a1faa7..dce732b 100644 --- a/fatcat_scholar/web.py +++ b/fatcat_scholar/web.py @@ -99,7 +99,7 @@ class HitsModel(BaseModel): async def search(query: FulltextQuery = Depends(FulltextQuery)) -> FulltextHits: hits: Optional[FulltextHits] = None if query.q is None: - raise HTTPException(status_code=400, detail=f"Expected a 'q' query parameter") + raise HTTPException(status_code=400, detail="Expected a 'q' query parameter") try: hits = process_query(query) except ValueError as e: @@ -328,7 +328,7 @@ app.add_middleware( allow_origins=["*"], allow_credentials=False, allow_methods=["GET"], - allow_headers=[], # some defaults always enabled + allow_headers=[], # some defaults always enabled ) if settings.SENTRY_DSN: -- cgit v1.2.3