diff options
author | JosephSBoyle <48555120+JosephSBoyle@users.noreply.github.com> | 2023-03-06 22:02:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-06 22:02:19 (GMT) |
commit | c84e6f32df989908685ea8b6cd49ddde9f428524 (patch) | |
tree | 30bdfbbfa2a457fb423727acc1497dcdcb4828b3 | |
parent | d959bcd4a0393a120fa12c034de4041037d171c3 (diff) | |
download | cpython-c84e6f32df989908685ea8b6cd49ddde9f428524.zip cpython-c84e6f32df989908685ea8b6cd49ddde9f428524.tar.gz cpython-c84e6f32df989908685ea8b6cd49ddde9f428524.tar.bz2 |
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 80d4fbd..b989284 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 |