Skip to content

Commit

Permalink
#78 Remove Problematic Segment
Browse files Browse the repository at this point in the history
This segment was causing all sorts of "was not awaited" warnings, however removing it seems to have resolved these issues.

I think it's an artefact from when Pydle was running its own event loop.
  • Loading branch information
Rixxan committed May 7, 2022
1 parent f57b592 commit 6ec21f0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@ async def run():
if connected:
await client.connect("mock://local", 1337)

try:
ret = f(client=client, server=server)
return ret
finally:
if client.eventloop:
client.eventloop.stop()

run.__name__ = f.__name__
return run

Expand Down

0 comments on commit 6ec21f0

Please sign in to comment.