Skip to content

Commit 09c56ca

Browse files
authored
Update compat.py
1 parent f15d4bf commit 09c56ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyrevitlib/pyrevit/compat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
if PY2:
2828
import _winreg as winreg
2929
import ConfigParser as configparser
30-
from collections import Iterable
30+
from collections import Iterable, Callable
3131
import urllib2
3232
from urlparse import urlparse
3333

3434
elif PY3:
3535
import winreg as winreg
3636
import configparser as configparser
37-
from collections.abc import Iterable
37+
from collections.abc import Iterable, Callable
3838
import urllib
3939
from urllib.parse import urlparse
4040

0 commit comments

Comments
 (0)