Skip to content

Commit

Permalink
Merge pull request #6486 from esc/fix_collections_import
Browse files Browse the repository at this point in the history
fix abstract base class import
  • Loading branch information
sklam committed Nov 16, 2020
2 parents 1bbe3e5 + eaedd3b commit 3e84cae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion numba/core/callconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
Calling conventions for Numba-compiled functions.
"""

from collections import namedtuple, Iterable
from collections import namedtuple
from collections.abc import Iterable
import itertools

from llvmlite import ir
Expand Down

0 comments on commit 3e84cae

Please sign in to comment.