chore: some tweaks
This commit is contained in:
+1
-1
@@ -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"]
|
||||||
|
|
||||||
|
|||||||
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user