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 #!/usr/bin/env python3
# PYTHON_ARGCOMPLETE_OK # PYTHON_ARGCOMPLETE_OK
from archmgr.config import create_config from .config import create_config
__all__ = ["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: class ArchMgrConfig:
pkgs: ArchMgrPkgs pkgs: ArchMgrPkgs
templates: object
modules: object
def __init__(self) -> None: def __init__(self) -> None:
self.pkgs = ArchMgrPkgs() self.pkgs = ArchMgrPkgs()
@@ -12,6 +14,6 @@ def create_config():
"""Create a new ArchMgrConfig, or get the existing config, if one exists """Create a new ArchMgrConfig, or get the existing config, if one exists
Returns: Returns:
[TODO:return] An ArchMgrConfig object
""" """
return ArchMgrConfig() return ArchMgrConfig()