[7.x] Fix typo (collections.abs -> collections.abc) to restore Python 3.9 support

Co-authored-by: Jeppe Fihl-Pearson <tenzer@tenzer.dk>
This commit is contained in:
Seth Michael Larson
2020-11-19 12:30:06 -06:00
committed by GitHub
co-authored by Jeppe Fihl-Pearson
parent 0ff76b1648
commit 465185d3a0
+1 -1
View File
@@ -33,7 +33,7 @@ else:
from queue import Queue
try:
from collections.abs import Mapping
from collections.abc import Mapping
except ImportError:
from collections import Mapping