Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-10-22 20:55:00 +0200
committerAnton Hvornum <anton@hvornum.se>2021-10-22 20:55:00 +0200
commit2ef793b76af3173c3bbe7fd9942263df6d84d464 (patch)
treee907b6b713e558e739a28767334ef38e37656e20 /archinstall/lib
parent3ec8df97533c6cf185e66d0839876527cfafec01 (diff)
Forgot some imports that didn't show up on a static run without going through a few of the menu's
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/disk/blockdevice.py2
-rw-r--r--archinstall/lib/disk/helpers.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/archinstall/lib/disk/blockdevice.py b/archinstall/lib/disk/blockdevice.py
index e2fcdae5..422f35aa 100644
--- a/archinstall/lib/disk/blockdevice.py
+++ b/archinstall/lib/disk/blockdevice.py
@@ -1,4 +1,6 @@
+import json
from ..output import log
+from ..general import SysCommand
class BlockDevice:
def __init__(self, path, info=None):
diff --git a/archinstall/lib/disk/helpers.py b/archinstall/lib/disk/helpers.py
index d37dfd9b..8b372f73 100644
--- a/archinstall/lib/disk/helpers.py
+++ b/archinstall/lib/disk/helpers.py
@@ -1,5 +1,6 @@
import re
import json
+from .blockdevice import BlockDevice
from ..exceptions import SysCallError
from ..general import SysCommand
from ..output import log