From cf39af344c26b58b5f0ab8d9bb992879fdf71ac6 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Thu, 19 Nov 2020 12:30:46 -0600 Subject: [PATCH] [7.10] Fix typo (collections.abs -> collections.abc) to restore Python 3.9 support Co-authored-by: Jeppe Fihl-Pearson --- elasticsearch/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/compat.py b/elasticsearch/compat.py index c5322b561..d42cb026f 100644 --- a/elasticsearch/compat.py +++ b/elasticsearch/compat.py @@ -33,7 +33,7 @@ from queue import Queue try: - from collections.abs import Mapping + from collections.abc import Mapping except ImportError: from collections import Mapping