From 018d3fd7be44e675717222f98c8ed7fde887408f Mon Sep 17 00:00:00 2001 From: Dobatymo Date: Thu, 14 Mar 2024 18:37:28 +0800 Subject: [PATCH] fix flake error --- send2trash/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/send2trash/compat.py b/send2trash/compat.py index 8f9d3ad..a3043a4 100644 --- a/send2trash/compat.py +++ b/send2trash/compat.py @@ -22,4 +22,4 @@ else: try: from collections.abc import Iterable as iterable_type except ImportError: - from collections import Iterable as iterable_type + from collections import Iterable as iterable_type # noqa: F401