Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 90a1325

Browse files
retain original function signature
1 parent 260474a commit 90a1325

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/components.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,13 @@ def commit_components(commit: Commit, owner: Owner | None) -> List[Component]:
2626

2727

2828
def component_filtered_report(
29-
report, components
29+
report: Report, components: List[Component]
3030
) -> FilteredReport:
3131
"""
3232
Filter a report such that the totals, etc. are only pertaining to the given component.
3333
"""
3434
print(report)
35+
3536
flags, paths = [], []
3637
for component in components:
3738
flags.extend(component.get_matching_flags(report.flags.keys()))

0 commit comments

Comments
 (0)