mirror of
https://gitlab.com/libvirt/libvirt-python.git
synced 2025-08-02 04:21:59 +03:00
event-test.py: Remove dead assignment
variable is unused Signed-off-by: Philipp Hahn <hahn@univention.de>
This commit is contained in:
committed by
Michal Privoznik
parent
5a7a871961
commit
b7d5d60274
@ -207,7 +207,7 @@ class virEventLoopPoll:
|
|||||||
# the data just continue
|
# the data just continue
|
||||||
if fd == self.pipetrick[0]:
|
if fd == self.pipetrick[0]:
|
||||||
self.pendingWakeup = False
|
self.pendingWakeup = False
|
||||||
data = os.read(fd, 1)
|
os.read(fd, 1)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
h = self.get_handle_by_fd(fd)
|
h = self.get_handle_by_fd(fd)
|
||||||
|
Reference in New Issue
Block a user