Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit f2c1298

Browse files
tretinhabessbd
authored andcommitted
Fix "DeprecationWarning" from "collections" (#451)
DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working.
1 parent 1f439f1 commit f2c1298

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cloudant/_common_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
import sys
2121
import platform
22-
from collections import Sequence
22+
from collections.abc import Sequence
2323
import json
2424

2525
from ._2to3 import LONGTYPE, STRTYPE, NONETYPE, UNITYPE, iteritems_

0 commit comments

Comments
 (0)