Skip to content

Commit 03e52b8

Browse files
fix: address comments
1 parent 81fb0d1 commit 03e52b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

codecov_cli/helpers/versioning_systems.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ def list_relevant_files(
208208
cmd = [
209209
"find",
210210
dir_to_use,
211-
*list(chain(*[["-name", block, "-prune", "-o"] for block in self.__class__.blockdirs()])),
212-
*list(chain(*[["-path", block, "-prune", "-o"] for block in self.__class__.blockfiles()])),
211+
*chain(*[["-name", block, "-prune", "-o"] for block in self.__class__.blockdirs()]),
212+
*chain(*[["-path", block, "-prune", "-o"] for block in self.__class__.blockfiles()]),
213213
"-type",
214214
"f",
215215
"-print",

0 commit comments

Comments
 (0)