Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/guided.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 067d591f..b3df07d7 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -1,6 +1,5 @@
import archinstall
import getpass, time, json, sys, signal
-from select import epoll, EPOLLIN
"""
This signal-handler chain (and global variable)
@@ -166,8 +165,6 @@ print()
print(f' ! Formatting {harddrive} in ', end='')
-poller = epoll()
-poller.register(sys.stdin.fileno(), EPOLLIN)
for i in range(5, 0, -1):
print(f"{i}", end='')
@@ -176,7 +173,7 @@ for i in range(5, 0, -1):
time.sleep(0.25)
print(".", end='')
- if list(poller.poll(0.25)) or SIG_TRIGGER:
+ if SIG_TRIGGER:
abort = input('\nDo you really want to abort (y/n)? ')
if abort.strip() != 'n':
exit(0)