Remove an unneeded import of abc.ABCMeta from 'inspect'.
This commit is contained in:
parent
46225e77fa
commit
7b96f07feb
|
@ -38,7 +38,6 @@ import dis
|
||||||
import imp
|
import imp
|
||||||
import tokenize
|
import tokenize
|
||||||
import linecache
|
import linecache
|
||||||
from abc import ABCMeta
|
|
||||||
from operator import attrgetter
|
from operator import attrgetter
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,8 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Remove an unneeded import of abc.ABCMeta from 'inspect'.
|
||||||
|
|
||||||
- Remove unneeded imports of 'sys' and 'warnings' from 'io'.
|
- Remove unneeded imports of 'sys' and 'warnings' from 'io'.
|
||||||
|
|
||||||
- Remove unneeded imports of 'warnings' from shelve, filecmp, and dummy_thread.
|
- Remove unneeded imports of 'warnings' from shelve, filecmp, and dummy_thread.
|
||||||
|
|
Loading…
Reference in New Issue