summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosephSBoyle <48555120+JosephSBoyle@users.noreply.github.com>2023-03-06 22:02:19 +0000
committerGitHub <noreply@github.com>2023-03-06 22:02:19 +0000
commitc84e6f32df989908685ea8b6cd49ddde9f428524 (patch)
tree30bdfbbfa2a457fb423727acc1497dcdcb4828b3
parentd959bcd4a0393a120fa12c034de4041037d171c3 (diff)
downloadcpython-git-c84e6f32df989908685ea8b6cd49ddde9f428524.tar.gz
Remove unused import of `warnings` from `unittest.loader` (#102479)
-rw-r--r--Lib/unittest/loader.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/unittest/loader.py b/Lib/unittest/loader.py
index 80d4fbdd8e..b989284a64 100644
--- a/Lib/unittest/loader.py
+++ b/Lib/unittest/loader.py
@@ -6,7 +6,6 @@ import sys
import traceback
import types
import functools
-import warnings
from fnmatch import fnmatch, fnmatchcase