Skip to content

Commit 2e4d2a6

Browse files
authored
fix: Return future.result from run_until_complete (#73)
1 parent d8c673a commit 2e4d2a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bundled/poll_loop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def run_until_complete(self, future):
150150
if self.exception is not None:
151151
raise self.exception
152152

153-
future.result()
153+
return future.result()
154154

155155
def is_running(self):
156156
return self.running

0 commit comments

Comments
 (0)