summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Goirand <zigo@debian.org>2022-03-10 22:15:35 +0100
committerThomas Goirand <zigo@debian.org>2022-03-10 22:15:35 +0100
commit8de53e8b7f4d1f88da4146ceeb5aa923a7300c56 (patch)
treec9abcd54f0dfab49b18da917709aeb0b31656730
parent39322f5ad88cf5eef003af74294676a5563a8296 (diff)
downloadtrove-8de53e8b7f4d1f88da4146ceeb5aa923a7300c56.tar.gz
Fix import from collections
collections.Mapping has moved to collections.abc.Mapping a long time ago, and was removed in Python 3.10. Change-Id: I303ac8fe685913cf2259386cababa4ded03f4866
-rw-r--r--trove/tests/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/trove/tests/config.py b/trove/tests/config.py
index 49d97c3e..1d21207d 100644
--- a/trove/tests/config.py
+++ b/trove/tests/config.py
@@ -21,7 +21,7 @@ environments if we choose to.
"""
-from collections import Mapping
+from collections.abc import Mapping
from datetime import datetime
import json
import os