]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_api/sql/sqlite_functions.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_api / sql / sqlite_functions.py
index 43865e951ef0e4d26361d5476830da0d5016fd1a..ef46bec36740b2b7a6f8a2fb8d02ac3b575acd7f 100644 (file)
@@ -10,7 +10,6 @@ Custom functions for SQLite.
 from typing import cast, Optional, Set, Any
 import json
 
-# pylint: disable=protected-access
 
 def weigh_search(search_vector: Optional[str], rankings: str, default: float) -> float:
     """ Custom weight function for search results.
@@ -118,5 +117,5 @@ async def _make_aggregate(aioconn: Any, *args: Any) -> None:
 def _create_aggregate(conn: Any, name: str, nargs: int, aggregate: Any) -> None:
     try:
         conn.await_(_make_aggregate(conn._connection, name, nargs, aggregate))
-    except Exception as error: # pylint: disable=broad-exception-caught
+    except Exception as error:
         conn._handle_exception(error)