]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_api/search/query_analyzer_factory.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_api / search / query_analyzer_factory.py
index 06443090ab52eef92368c8da48a7bc3b2f35dc38..ca25ccb5fe4eb9f6f1f4c8153dc4d6264f9490b3 100644 (file)
@@ -18,6 +18,7 @@ from ..connection import SearchConnection
 if TYPE_CHECKING:
     from .query import Phrase, QueryStruct
 
+
 class AbstractQueryAnalyzer(ABC):
     """ Class for analysing incoming queries.
 
@@ -29,7 +30,6 @@ class AbstractQueryAnalyzer(ABC):
         """ Analyze the given phrases and return the tokenized query.
         """
 
-
     @abstractmethod
     def normalize_text(self, text: str) -> str:
         """ Bring the given text into a normalized form. That is the
@@ -38,7 +38,6 @@ class AbstractQueryAnalyzer(ABC):
         """
 
 
-
 async def make_query_analyzer(conn: SearchConnection) -> AbstractQueryAnalyzer:
     """ Create a query analyzer for the tokenizer used by the database.
     """