blob: 1d6784f2433c56dd6fda7cb2132fbc0c6f4ef910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""unused import"""
# pylint: disable=undefined-all-variable, import-error
import xml.etree # [unused-import]
import xml.sax # [unused-import]
import os.path as test # [unused-import]
from sys import argv as test2 # [unused-import]
from sys import flags # [unused-import]
# +1:[unused-import,unused-import]
from collections import deque, OrderedDict, Counter
DATA = Counter()
from never import __all__
|