Skip to content

Commit 32734f4

Browse files
fix: make it nicer looking
1 parent 03e52b8 commit 32734f4

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-
*chain(*[["-name", block, "-prune", "-o"] for block in self.__class__.blockdirs()]),
212-
*chain(*[["-path", block, "-prune", "-o"] for block in self.__class__.blockfiles()]),
211+
*chain.from_iterable(["-name", block, "-prune", "-o"] for block in self.__class__.blockdirs()),
212+
*chain.from_iterable(["-path", block, "-prune", "-o"] for block in self.__class__.blockfiles()),
213213
"-type",
214214
"f",
215215
"-print",

0 commit comments

Comments
 (0)