Add init files for modularization, generated using mkinit (now a dependency on dev)

This commit is contained in:
Pim Nelissen
2026-01-31 09:44:18 +01:00
parent 15b7e7e65e
commit a4e965c9d6
8 changed files with 62 additions and 1 deletions

View File

@ -0,0 +1,8 @@
# do not expose internal logger when running mkinit
__ignore__ = ["logger"]
from pg_rad.landscape import landscape
from pg_rad.landscape.landscape import (Landscape, create_landscape_from_path,)
__all__ = ['Landscape', 'create_landscape_from_path', 'landscape']