Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/blockdevice.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2021-11-10 11:40:47 +0000
committerGitHub <noreply@github.com>2021-11-10 11:40:47 +0000
commitfaadc2b96831a2f55fa7430a3c4ae63c172cefa6 (patch)
treeaf503266810a971d51d45b73ff1eace96413401e /archinstall/lib/disk/blockdevice.py
parent671c7b38545079136f804e0fb5b77e21f0dba44f (diff)
Fixed linting issue
Diffstat (limited to 'archinstall/lib/disk/blockdevice.py')
-rw-r--r--archinstall/lib/disk/blockdevice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk/blockdevice.py b/archinstall/lib/disk/blockdevice.py
index 493e5383..5204f09b 100644
--- a/archinstall/lib/disk/blockdevice.py
+++ b/archinstall/lib/disk/blockdevice.py
@@ -223,7 +223,7 @@ class BlockDevice:
else:
log(f"uuid {uuid} not found. Waiting for {count +1} time",level=logging.DEBUG)
time.sleep(float(storage['arguments'].get('disk-sleep', 0.2)))
- count +=1
+ count += 1
else:
log(f"Could not find {uuid} in disk after 5 retries",level=logging.INFO)
raise DiskError(f"New partition {uuid} never showed up after adding new partition on {self}")