Skip to content

Commit cca495b

Browse files
committed
CM-53929 - Fix support files set creation
1 parent 26fdf7a commit cca495b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cycode/cli/files_collector/walk_ignore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _collect_top_level_ignore_files(path: str, *, is_cycodeignore_allowed: bool
3030
ignore_files = []
3131
top_paths = reversed(list(_walk_to_top(path))) # we must reverse it to make top levels more prioritized
3232

33-
supported_files = {_SUPPORTED_IGNORE_PATTERN_FILES}
33+
supported_files = set(_SUPPORTED_IGNORE_PATTERN_FILES)
3434
if is_cycodeignore_allowed:
3535
supported_files.add(consts.CYCODEIGNORE_FILENAME)
3636
logger.debug('.cycodeignore files included due to scan configuration')

0 commit comments

Comments
 (0)