Skip to content

Commit ef1beb0

Browse files
committed
Merge branch 'feat/git_filter' of github.com:mdeweerd/codespell into feat/git_filter
2 parents b588fb3 + eae02cf commit ef1beb0

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

codespell_lib/_codespell.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1178,8 +1178,7 @@ def build_file_list_with_os_walk(
11781178
dirs[:] = [
11791179
dir_
11801180
for dir_ in dirs
1181-
if not glob_match.match(dir_)
1182-
and not is_hidden(dir_, check_hidden)
1181+
if not glob_match.match(dir_) and not is_hidden(dir_, check_hidden)
11831182
]
11841183
elif not glob_match.match(filename) and not is_hidden(filename, check_hidden):
11851184
all_files.append(filename)

0 commit comments

Comments
 (0)