diff --git a/redbot/__init__.py b/redbot/__init__.py index 13d14ff05..8b08c74f4 100644 --- a/redbot/__init__.py +++ b/redbot/__init__.py @@ -181,9 +181,7 @@ class VersionInfo: def _update_event_loop_policy(): - if _sys.platform == "win32": - _asyncio.set_event_loop_policy(_asyncio.WindowsProactorEventLoopPolicy()) - elif _sys.implementation.name == "cpython": + if _sys.implementation.name == "cpython": # Let's not force this dependency, uvloop is much faster on cpython try: import uvloop as _uvloop