netrc: Remove unused "import shlex" (#93311)

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"]