We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f15d4bf commit 09c56caCopy full SHA for 09c56ca
pyrevitlib/pyrevit/compat.py
@@ -27,14 +27,14 @@
27
if PY2:
28
import _winreg as winreg
29
import ConfigParser as configparser
30
- from collections import Iterable
+ from collections import Iterable, Callable
31
import urllib2
32
from urlparse import urlparse
33
34
elif PY3:
35
import winreg as winreg
36
import configparser as configparser
37
- from collections.abc import Iterable
+ from collections.abc import Iterable, Callable
38
import urllib
39
from urllib.parse import urlparse
40
0 commit comments