- fixed the issue with toggling visibility for Excellon objects

- fixed some issue when using Python 3.10
This commit is contained in:
Marius Stanciu
2021-11-10 22:48:59 +02:00
committed by Marius
parent 825701c73c
commit b29586388b
7 changed files with 20 additions and 16 deletions

View File

@@ -88,7 +88,7 @@ class LoudDict(dict):
self.callback = callback
class LoudUniqueList(list, collections.MutableSequence):
class LoudUniqueList(list, collections.abc.MutableSequence):
"""
A List with a callback for item changes, callback which returns the index where the items are added/modified.
A List that will allow adding only items that are not in the list.