Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 15:43:02 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 15:43:02 -0400
commit8e86a955ec3c261c016594d100078d7069f4c933 (patch)
treefd3d22b06d01dcfb496cb774731c8124688d8546 /archinstall
parent96a48664e2d69d138f58967fdd75c605ad21478e (diff)
archinstall/__init__.py changes
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/__init__.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/archinstall/__init__.py b/archinstall/__init__.py
index 58012a21..f6fe4230 100644
--- a/archinstall/__init__.py
+++ b/archinstall/__init__.py
@@ -3,7 +3,6 @@ from .lib.disk import *
from .lib.exceptions import *
from .lib.general import *
from .lib.hardware import *
-from .lib.installer import __packages__, Installer
from .lib.locale_helpers import *
from .lib.luks import *
from .lib.mirrors import *
@@ -17,9 +16,9 @@ from .lib.user_interaction import *
__version__ = "2.2.0.dev1"
-## Basic version of arg.parse() supporting:
-## --key=value
-## --boolean
+# Basic version of arg.parse() supporting:
+# --key=value
+# --boolean
arguments = {}
positionals = []
for arg in sys.argv[1:]:
@@ -33,8 +32,7 @@ for arg in sys.argv[1:]:
positionals.append(arg)
-# TODO: Learn the dark arts of argparse...
-# (I summon thee dark spawn of cPython)
+# TODO: Learn the dark arts of argparse... (I summon thee dark spawn of cPython)
def run_as_a_module():