File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 88from enum import Enum
99from itertools import chain
1010from operator import itemgetter
11+ from subprocess import Popen
12+
1113if sys .version_info [0 ] == 2 :
12- from whichcraft import which
13- from itertools import ifilter as filter
14+ from whichcraft import which
15+ from itertools import ifilter as filter
1416else :
15- from shutil import which
16- from subprocess import Popen
17+ from shutil import which
1718
1819import crossplane
1920
Original file line number Diff line number Diff line change 66if version_info [0 ] == 2 :
77 from codecs import open
88
9- maketrans = string .maketrans
10- string_types = basestring ,
9+ maketrans = string .maketrans # noqa: F821
10+ string_types = basestring , # noqa: F821
1111else :
1212 maketrans = str .maketrans
1313 string_types = str ,
You can’t perform that action at this time.
0 commit comments