Skip to content

Commit b7d5d60

Browse files
pmhahnzippy2
authored andcommitted
event-test.py: Remove dead assignment
variable is unused Signed-off-by: Philipp Hahn <[email protected]>
1 parent 5a7a871 commit b7d5d60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/event-test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def run_once(self):
207207
# the data just continue
208208
if fd == self.pipetrick[0]:
209209
self.pendingWakeup = False
210-
data = os.read(fd, 1)
210+
os.read(fd, 1)
211211
continue
212212

213213
h = self.get_handle_by_fd(fd)

0 commit comments

Comments
 (0)