Skip to content

Commit

Permalink
Fix crash with tuple concatenation onto list (#615)
Browse files Browse the repository at this point in the history
* Fix issue with tuple concatenation onto list

* Update codecov_cli/services/upload/file_finder.py

---------

Co-authored-by: Tom Hu <[email protected]>
  • Loading branch information
TabulateJarl8 and thomasrockhu-codecov authored Feb 6, 2025
1 parent 0728eb0 commit 781d11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codecov_cli/services/upload/file_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def __init__(
report_type: str = "coverage",
):
self.search_root = search_root or Path(os.getcwd())
self.folders_to_ignore = folders_to_ignore or []
self.folders_to_ignore = list(folders_to_ignore) if folders_to_ignore else []
self.explicitly_listed_files = explicitly_listed_files or None
self.disable_search = disable_search
self.report_type = report_type
Expand Down

0 comments on commit 781d11f

Please sign in to comment.