Skip to content

Commit fc5b6e8

Browse files
authored
Fix typo (collections.abs -> collections.abc) to restore Python 3.9 support
1 parent 6aba843 commit fc5b6e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

elasticsearch/compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from queue import Queue
3434

3535
try:
36-
from collections.abs import Mapping
36+
from collections.abc import Mapping
3737
except ImportError:
3838
from collections import Mapping
3939

0 commit comments

Comments
 (0)