Skip to content

Commit c674a7d

Browse files
Fix bad merge
1 parent 7be43d0 commit c674a7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

isort/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ def _check_folder_gitignore(self, folder: str) -> Optional[Path]:
555555
if ".git" in _dirs:
556556
_dirs.remove(".git")
557557
for git_file in git_files:
558-
files.append(os.path.join(root, git_file))\
558+
files.append(os.path.join(root, git_file))
559559
git_options = ["-C", str(git_folder), "-c", "core.quotePath="]
560560
try:
561561
ignored = subprocess.check_output( # nosec # skipcq: PYL-W1510

0 commit comments

Comments
 (0)