Merge branch 'collections-abc-warning' into 'master'
Collections abc warning See merge request poezio/slixmpp!139
This commit is contained in:
commit
7381460556
1 changed files with 2 additions and 2 deletions
4
slixmpp/thirdparty/orderedset.py
vendored
4
slixmpp/thirdparty/orderedset.py
vendored
|
@ -20,9 +20,9 @@
|
|||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
# OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
import collections
|
||||
from collections.abc import MutableSet
|
||||
|
||||
class OrderedSet(collections.MutableSet):
|
||||
class OrderedSet(MutableSet):
|
||||
|
||||
def __init__(self, iterable=None):
|
||||
self.end = end = []
|
||||
|
|
Loading…
Reference in a new issue