summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlises Ojeda <ulises.odysseus22@gmail.com>2022-06-04 03:14:58 (GMT)
committerGitHub <noreply@github.com>2022-06-04 03:14:58 (GMT)
commit3284f86b51e74dc7f3c5110330cde60734fa49d0 (patch)
treee9c6fe4e7c9fc372e8243b0672d8a98cd8bb15a3
parent1713ff09d6772a3225c21471e8d845d6f1382b0f (diff)
downloadcpython-3284f86b51e74dc7f3c5110330cde60734fa49d0.zip
cpython-3284f86b51e74dc7f3c5110330cde60734fa49d0.tar.gz
cpython-3284f86b51e74dc7f3c5110330cde60734fa49d0.tar.bz2
netrc: Remove unused "import shlex" (#93311)
-rw-r--r--Lib/netrc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/netrc.py b/Lib/netrc.py
index c1358aa..b285fd8 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"]