add type annotations for SQL preprocessor

This commit is contained in:
Sarah Hoffmann
2022-07-05 11:24:53 +02:00
parent 26f30bff28
commit 0dff71a410
2 changed files with 15 additions and 8 deletions

View File

@@ -66,7 +66,11 @@ class Configuration:
self._config.update(dotenv_values(str((project_dir / '.env').resolve())))
class _LibDirs:
pass
module: Path
osm2pgsql: Path
php: Path
sql: Path
data: Path
self.lib_dir = _LibDirs()