Skip to content

Commit

Permalink
Fix bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Jul 21, 2021
1 parent 7be43d0 commit c674a7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isort/settings.py
Expand Up @@ -555,7 +555,7 @@ def _check_folder_gitignore(self, folder: str) -> Optional[Path]:
if ".git" in _dirs:
_dirs.remove(".git")
for git_file in git_files:
files.append(os.path.join(root, git_file))\
files.append(os.path.join(root, git_file))
git_options = ["-C", str(git_folder), "-c", "core.quotePath="]
try:
ignored = subprocess.check_output( # nosec # skipcq: PYL-W1510
Expand Down

0 comments on commit c674a7d

Please sign in to comment.