Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-02-07 12:52:12 +0100
committerAnton Hvornum <anton@hvornum.se>2021-02-07 12:52:12 +0100
commitfa2270a11b833928186727812a3a3f82d18ef5ce (patch)
treeb393e6ef8c46827b2591c1d7e9c9875d75bc41ce /archinstall/lib/disk.py
parenta618ebd6111de0cab9c0f04449cf1a8483156615 (diff)
Created has_partitions() on BlockDevice's
Diffstat (limited to 'archinstall/lib/disk.py')
-rw-r--r--archinstall/lib/disk.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index caf5c4e1..1d78d127 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -100,6 +100,9 @@ class BlockDevice():
all_partitions = self.partitions
return [all_partitions[k] for k in all_partitions]
+ def has_partitions(self):
+ return len(self.partitions)
+
class Partition():
def __init__(self, path, part_id=None, size=-1, filesystem=None, mountpoint=None, encrypted=False):