Add newline after countdown (#3237)

This commit is contained in:
Daniel Girtler 2025-03-10 22:02:26 +11:00 committed by GitHub
parent 24f479892f
commit 12562f4cae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -851,6 +851,7 @@ class DeviceHandler:
auto-discovery tools don't recognize anything here.
"""
info(f'Wiping partitions and metadata: {block_device.device_info.path}')
for partition in block_device.partition_infos:
luks = Luks2(partition.path)
if luks.isLuks():

View File

@ -352,7 +352,7 @@ class FilesystemHandler:
Tui.print(out, row=0, endl='', clear_screen=True)
try:
countdown = '\n5...4...3...2...1'
countdown = '\n5...4...3...2...1\n'
for c in countdown:
Tui.print(c, row=0, endl='')
time.sleep(0.25)