Skip to content

Commit

Permalink
Merge pull request #374 from jharriman/jharriman/fix-type-annotation
Browse files Browse the repository at this point in the history
Fix select.poll type annotation for Mac OS
  • Loading branch information
fizyk committed Jan 10, 2020
2 parents 660474f + 5bc259d commit 3577e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mirakuru/output.py
Expand Up @@ -133,7 +133,7 @@ def _wait_for_darwin_output(self, *fds: Optional[IO[Any]]) -> bool:
return True
return False

def _wait_for_output(self, *polls: Tuple[select.poll, IO[Any]]) -> bool:
def _wait_for_output(self, *polls: Tuple['select.poll', IO[Any]]) -> bool:
"""
Check if output matches banner.
Expand Down

0 comments on commit 3577e04

Please sign in to comment.