Fix ABC alias for Python 3.10

Aliases in collections.* to collections.abc.* have been removed starting
with python 3.10, so we must use the fully qualified import here.
LT1AB
Ryan Burns 2021-12-29 16:29:52 -08:00
parent ac596fcf7c
commit ba4621c928
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
from collections import MutableSequence
from collections.abc import MutableSequence
from iscesys.Component.Component import Component
import numpy as N
import re