File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
if PY2 :
28
28
import _winreg as winreg
29
29
import ConfigParser as configparser
30
- from collections import Iterable
30
+ from collections import Iterable , Callable
31
31
import urllib2
32
32
from urlparse import urlparse
33
33
34
34
elif PY3 :
35
35
import winreg as winreg
36
36
import configparser as configparser
37
- from collections .abc import Iterable
37
+ from collections .abc import Iterable , Callable
38
38
import urllib
39
39
from urllib .parse import urlparse
40
40
Original file line number Diff line number Diff line change 10
10
import re
11
11
import copy
12
12
from itertools import tee
13
- from collections import OrderedDict , Callable #pylint: disable=E0611
13
+ from collections import OrderedDict
14
14
15
- from pyrevit .compat import PY2
15
+ from pyrevit .compat import PY2 , Callable
16
16
if PY2 :
17
17
from itertools import izip as zip
18
18
You can’t perform that action at this time.
0 commit comments