diff options
author | Victor Stinner <vstinner@python.org> | 2023-06-06 21:13:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 21:13:24 (GMT) |
commit | 94d5f9827da4bf4b1e61c134fe29904b2b92f124 (patch) | |
tree | 831fc49c1826f0bd5b37610f190c0dbb30f13563 /Lib/unittest | |
parent | d1b0015ea88112258470463a74dad90ebce7ab67 (diff) | |
download | cpython-94d5f9827da4bf4b1e61c134fe29904b2b92f124.zip cpython-94d5f9827da4bf4b1e61c134fe29904b2b92f124.tar.gz cpython-94d5f9827da4bf4b1e61c134fe29904b2b92f124.tar.bz2 |
gh-105407: Remove unused imports in the stdlib (#105411)
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/main.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/unittest/main.py b/Lib/unittest/main.py index 03963e0..d29a9f9 100644 --- a/Lib/unittest/main.py +++ b/Lib/unittest/main.py @@ -3,7 +3,6 @@ import sys import argparse import os -import warnings from . import loader, runner from .signals import installHandler |