]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/config.py
add Python package configuration
[nominatim.git] / nominatim / config.py
index 3344a425a5667d58f6e2cd79e916f0b9bbb8c839..6bfc6076a89fe799170af016cd42e8894edb5c8f 100644 (file)
@@ -83,7 +83,7 @@ class Configuration:
         """ Set paths to library functions and data.
         """
         for key, value in kwargs.items():
-            setattr(self.lib_dir, key, Path(value))
+            setattr(self.lib_dir, key, None if value is None else Path(value))
 
 
     def __getattr__(self, name: str) -> str: