Skip to content

Commit

Permalink
Fix ABC alias for Python 3.10
Browse files Browse the repository at this point in the history
Aliases in collections.* to collections.abc.* have been removed starting
with python 3.10, so we must use the fully qualified import here.
  • Loading branch information
rtburns-jpl committed Jul 21, 2022
1 parent ac596fc commit ba4621c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/iscesys/Component/TraitSeq.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ba4621c

Please sign in to comment.