]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_db/tools/special_phrases/sp_csv_loader.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_db / tools / special_phrases / sp_csv_loader.py
index db4806cdd034838065b5da62ed4864663345d4ac..9556b88424ab221292b4d7fb18e8ff3cb0aed57b 100644 (file)
@@ -16,6 +16,7 @@ import os
 from ...errors import UsageError
 from .special_phrase import SpecialPhrase
 
+
 class SPCsvLoader:
     """
         Handles loading of special phrases from external csv file.
@@ -23,7 +24,6 @@ class SPCsvLoader:
     def __init__(self, csv_path: str) -> None:
         self.csv_path = csv_path
 
-
     def generate_phrases(self) -> Iterable[SpecialPhrase]:
         """ Open and parse the given csv file.
             Create the corresponding SpecialPhrases.
@@ -35,7 +35,6 @@ class SPCsvLoader:
             for row in reader:
                 yield SpecialPhrase(row['phrase'], row['class'], row['type'], row['operator'])
 
-
     def _check_csv_validity(self) -> None:
         """
             Check that the csv file has the right extension.