Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/partition.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-10-22 21:54:16 +0200
committerAnton Hvornum <anton@hvornum.se>2021-10-22 21:54:16 +0200
commit7149b76f3bd3163938fe7413546e5f678f98851f (patch)
tree7c6768ea65799387a9b1b2dc5a2c0b7212e9e785 /archinstall/lib/disk/partition.py
parent8b96080ec81939f3a69c28585c21c43e496d087b (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/disk/partition.py')
-rw-r--r--archinstall/lib/disk/partition.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/archinstall/lib/disk/partition.py b/archinstall/lib/disk/partition.py
index 30151583..3bb2982b 100644
--- a/archinstall/lib/disk/partition.py
+++ b/archinstall/lib/disk/partition.py
@@ -2,9 +2,13 @@ import glob
import pathlib
import time
import logging
+import json
+import os
from typing import Optional
from .blockdevice import BlockDevice
+from .helpers import get_mount_info, get_filesystem_type
from ..output import log
+from ..general import SysCommand
class Partition:
def __init__(self, path: str, block_device: BlockDevice, part_id=None, size=-1, filesystem=None, mountpoint=None, encrypted=False, autodetect_filesystem=True):