chore: some tweaks

This commit is contained in:
2026-06-13 10:41:51 +02:00
parent ed2b35a852
commit 38f2a61563
2 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# PYTHON_ARGCOMPLETE_OK
from archmgr.config import create_config
from .config import create_config
__all__ = ["create_config"]
+4 -2
View File
@@ -1,8 +1,10 @@
from archmgr.config.pkgs import ArchMgrPkgs
from .pkgs import ArchMgrPkgs
class ArchMgrConfig:
pkgs: ArchMgrPkgs
templates: object
modules: object
def __init__(self) -> None:
self.pkgs = ArchMgrPkgs()
@@ -12,6 +14,6 @@ def create_config():
"""Create a new ArchMgrConfig, or get the existing config, if one exists
Returns:
[TODO:return]
An ArchMgrConfig object
"""
return ArchMgrConfig()