Skip to content

Commit

Permalink
fixed issue #361
Browse files Browse the repository at this point in the history
:Problem: DeprecationWarning: Using or importing the ABCs from 'collections'
:Solution: import from 'collections.abc'
  • Loading branch information
Santosh Philip committed Dec 10, 2021
1 parent e1bed85 commit 8adba47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eppy/idf_msequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from eppy.bunch_subclass import EpBunch


class Idf_MSequence(collections.MutableSequence):
class Idf_MSequence(collections.abc.MutableSequence):
"""Used to keep IDF.idfobjects in sync with IDF.model.dt."""

def __init__(self, list1, list2, theidf):
Expand Down

0 comments on commit 8adba47

Please sign in to comment.