Skip to content

Commit

Permalink
Merge pull request #998 from jdufresne/extra-list
Browse files Browse the repository at this point in the history
Remove redundant coerce to list
  • Loading branch information
timothycrosley authored Aug 22, 2019
2 parents 81da1c2 + 3078216 commit cf22449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isort/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def _update_with_config_file(
value = bool(strtobool(value))
computed_settings[access_key] = value
elif key.startswith("known_"):
computed_settings[access_key] = list(_abspaths(cwd, _as_list(value)))
computed_settings[access_key] = _abspaths(cwd, _as_list(value))
elif key == "force_grid_wrap":
try:
result = existing_value_type(value)
Expand Down

0 comments on commit cf22449

Please sign in to comment.