From 3284f86b51e74dc7f3c5110330cde60734fa49d0 Mon Sep 17 00:00:00 2001 From: Ulises Ojeda Date: Sat, 4 Jun 2022 05:14:58 +0200 Subject: [PATCH] netrc: Remove unused "import shlex" (#93311) --- Lib/netrc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/netrc.py b/Lib/netrc.py index c1358aac6ae..b285fd8e357 100644 --- a/Lib/netrc.py +++ b/Lib/netrc.py @@ -2,7 +2,7 @@ # Module and documentation by Eric S. Raymond, 21 Dec 1998 -import os, shlex, stat +import os, stat __all__ = ["netrc", "NetrcParseError"]