From 6935629785f6bf9e6b830ce99707f61934e49dac Mon Sep 17 00:00:00 2001 From: Karthikeyan Singaravelan Date: Sun, 26 Jul 2020 23:00:47 +0530 Subject: [PATCH] Fix warning regarding ABC import from collections (#160) --- cachalot/monkey_patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cachalot/monkey_patch.py b/cachalot/monkey_patch.py index 0ea2fd9..8f14d3a 100644 --- a/cachalot/monkey_patch.py +++ b/cachalot/monkey_patch.py @@ -1,4 +1,4 @@ -from collections import Iterable +from collections.abc import Iterable from functools import wraps from time import time