From d6d14617d21b5d24ef95bd2f4a9b23ba014de194 Mon Sep 17 00:00:00 2001 From: Redjumpman Date: Thu, 16 Jan 2020 13:18:20 -0500 Subject: [PATCH] Update __init__.py (#3381) Removed redundant check. --- redbot/__init__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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