8000 Add missing import to fix OrderedDict.clear. · thecodingchicken/python-future@2a11447 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2a11447

Browse files
committed
Add missing import to fix OrderedDict.clear.
1 parent 5924c81 commit 2a11447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/future/backports/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from math import ceil as oldceil
1212
import subprocess
1313

14-
from future.utils import iteritems, PY26
14+
from future.utils import iteritems, itervalues, PY26
1515

1616

1717
def ceil(x):

0 commit comments

Comments
 (0)
0