Skip to content

Commit

Permalink
fix stupid missing arg in _io_windows.py
Browse files Browse the repository at this point in the history
  • Loading branch information
njsmith committed May 27, 2020
1 parent 11d7db2 commit 5b75987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trio/_core/_io_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def get_events(self, timeout):
return 0
return received[0]

def process_events(received):
def process_events(self, received):
for i in range(received):
entry = self._events[i]
if entry.lpCompletionKey == CKeys.AFD_POLL:
Expand Down

0 comments on commit 5b75987

Please sign in to comment.