From f9daf039ad3541300a3722bf3a5005da32c6c196 Mon Sep 17 00:00:00 2001 From: Wellton Costa de Oliveira Date: Mon, 4 Apr 2022 21:43:46 +0000 Subject: [PATCH] Support to Python 3.10 Coverart broken in python 3.10. Its is a fix. --- coverart_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coverart_utils.py b/coverart_utils.py index 445a005..c3f7a9d 100644 --- a/coverart_utils.py +++ b/coverart_utils.py @@ -765,7 +765,7 @@ unicode vs string issues ''' -class CaseInsensitiveDict(collections.Mapping): +class CaseInsensitiveDict(collections.abc.Mapping): def __init__(self, d): self._d = d self._s = dict((RB.search_fold(k), k) for k in d)