From ba43b3cf2c182b3be20964d30b85ef6e7c82ee9f Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Thu, 8 Oct 2020 05:14:49 -0700 Subject: [PATCH] Fix issue identified by deepsource: unnecessary call to tuple --- isort/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isort/settings.py b/isort/settings.py index 158aa36ca..96fc9410e 100644 --- a/isort/settings.py +++ b/isort/settings.py @@ -182,7 +182,7 @@ class _Config: directory: str = "" profile: str = "" honor_noqa: bool = False - src_paths: Tuple[Path, ...] = tuple() + src_paths: Tuple[Path, ...] = () old_finders: bool = False remove_redundant_aliases: bool = False float_to_top: bool = False