1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2025-07-28 15:41:52 +03:00

event-test.py: Remove dead assignment

variable is unused

Signed-off-by: Philipp Hahn <hahn@univention.de>
This commit is contained in:
Philipp Hahn
2018-09-21 15:34:58 +02:00
committed by Michal Privoznik
parent 5a7a871961
commit b7d5d60274

View File

@ -207,7 +207,7 @@ class virEventLoopPoll:
# the data just continue
if fd == self.pipetrick[0]:
self.pendingWakeup = False
data = os.read(fd, 1)
os.read(fd, 1)
continue
h = self.get_handle_by_fd(fd)