From 90549676e063c2c818cfc14213d3adb7edcc2bd5 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 30 Apr 2020 11:26:33 +0200 Subject: bpo-40443: Remove unused imports in the stdlib (GH-19803) --- Lib/asyncio/sslproto.py | 1 - 1 file changed, 1 deletion(-) (limited to 'Lib/asyncio/sslproto.py') diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py index 3eca6b4a39..cad25b2653 100644 --- a/Lib/asyncio/sslproto.py +++ b/Lib/asyncio/sslproto.py @@ -5,7 +5,6 @@ try: except ImportError: # pragma: no cover ssl = None -from . import base_events from . import constants from . import protocols from . import transports -- cgit v1.2.1