Skip to content

Commit

Permalink
Fix issue identified by deepsource: unnecessary call to tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Oct 8, 2020
1 parent 9c0ff49 commit ba43b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isort/settings.py
Expand Up @@ -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
Expand Down

0 comments on commit ba43b3c

Please sign in to comment.