]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_db/tokenizer/factory.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_db / tokenizer / factory.py
index b9022d8d0105f3234f7283b0fa9c89286021da1f..70b2b0beed0b7718e9dfd19582540b2302cb75b0 100644 (file)
@@ -15,9 +15,6 @@ be used consistently when querying and updating the database.
 This module provides the functions to create and configure a new tokenizer
 as well as instantiating the appropriate tokenizer for updating an existing
 database.
-
-A tokenizer usually also includes PHP code for querying. The appropriate PHP
-normalizer module is installed, when the tokenizer is created.
 """
 from typing import Optional
 import logging
@@ -32,6 +29,7 @@ from ..tokenizer.base import AbstractTokenizer, TokenizerModule
 
 LOG = logging.getLogger()
 
+
 def _import_tokenizer(name: str) -> TokenizerModule:
     """ Load the tokenizer.py module from project directory.
     """