diff options
author | JosephSBoyle <48555120+JosephSBoyle@users.noreply.github.com> | 2023-03-06 22:02:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-06 22:02:19 +0000 |
commit | c84e6f32df989908685ea8b6cd49ddde9f428524 (patch) | |
tree | 30bdfbbfa2a457fb423727acc1497dcdcb4828b3 | |
parent | d959bcd4a0393a120fa12c034de4041037d171c3 (diff) | |
download | cpython-git-c84e6f32df989908685ea8b6cd49ddde9f428524.tar.gz |
Remove unused import of `warnings` from `unittest.loader` (#102479)
-rw-r--r-- | Lib/unittest/loader.py | 1 |
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 |