From f463746411bd37625552b9ac2acc011bdf6586ba Mon Sep 17 00:00:00 2001 From: Dilibe <71243271+Ddilibe@users.noreply.github.com> Date: Fri, 10 Mar 2023 16:32:56 -0800 Subject: [PATCH] [Chore]: Update area for the import of Iterable --- sqlalchemy_imageattach/file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlalchemy_imageattach/file.py b/sqlalchemy_imageattach/file.py index 50de19b..57ef408 100644 --- a/sqlalchemy_imageattach/file.py +++ b/sqlalchemy_imageattach/file.py @@ -4,7 +4,7 @@ The file-like types which wraps/proxies an other file objects. """ -from collections import Iterator +from collections.abc import Iterator import os __all__ = 'FileProxy', 'ReusableFileProxy', 'SeekableFileProxy'