Browse Source

Stop asyncio.async throwing a syntax error in 3.7.

Maintains support for < 3.4.4
pull/1450/head
MysterialPy 7 years ago
committed by bmintz
parent
commit
1863a1c663
  1. 2
      discord/compat.py

2
discord/compat.py

@ -29,7 +29,7 @@ import asyncio
try:
create_task = asyncio.ensure_future
except AttributeError:
create_task = asyncio.async
create_task = getattr(asyncio, 'async')
try:
run_coroutine_threadsafe = asyncio.run_coroutine_threadsafe

Loading…
Cancel
Save