Skip to content

Commit

Permalink
Merge dc83e69 into 264ea35
Browse files Browse the repository at this point in the history
  • Loading branch information
cdonovick committed Jul 17, 2019
2 parents 264ea35 + dc83e69 commit b267df9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion magma/array.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from collections import Sequence
from collections.abc import Sequence
from .bitutils import int2seq
from .ref import AnonRef, ArrayRef
from .t import Type, Kind
Expand Down
2 changes: 1 addition & 1 deletion magma/bitutils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# https://wiki.python.org/moin/BitManipulation
# https://code.google.com/p/python-bitstring/
from types import FunctionType
from collections import Sequence
from collections.abc import Sequence
import inspect
from .compatibility import StringTypes

Expand Down
2 changes: 1 addition & 1 deletion magma/conversions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import functools
from collections import Sequence
from collections.abc import Sequence
from .compatibility import IntegerTypes
from .t import In, Out, InOut, INPUT, OUTPUT, INOUT
from .bit import _BitKind, _BitType, Bit, BitType, VCC, GND
Expand Down
2 changes: 1 addition & 1 deletion magma/wire.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import inspect
from collections import Sequence
from collections.abc import Sequence
from .port import INPUT, OUTPUT, INOUT
from .compatibility import IntegerTypes
from .t import Type
Expand Down

0 comments on commit b267df9

Please sign in to comment.