From 8adba47a9d8aa908f2b928593df543c49d85f0a1 Mon Sep 17 00:00:00 2001 From: Santosh Philip Date: Thu, 9 Dec 2021 22:25:45 -0800 Subject: [PATCH] fixed issue #361 :Problem: DeprecationWarning: Using or importing the ABCs from 'collections' :Solution: import from 'collections.abc' --- eppy/idf_msequence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eppy/idf_msequence.py b/eppy/idf_msequence.py index f6117362..2a369167 100644 --- a/eppy/idf_msequence.py +++ b/eppy/idf_msequence.py @@ -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):