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 | Add gettext support to tools/extensions/c_annotations.py (#101989) (diff) | |
download | cpython-c84e6f32df989908685ea8b6cd49ddde9f428524.tar.gz cpython-c84e6f32df989908685ea8b6cd49ddde9f428524.tar.bz2 cpython-c84e6f32df989908685ea8b6cd49ddde9f428524.zip |
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 80d4fbdd8e3..b989284a640 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 |