Skip to content

Commit

Permalink
Use after argument
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleFromNVIDIA committed Jan 30, 2025
1 parent af18299 commit e57037e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/rapids_pre_commit_hooks/codeowners.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ def project_codeowners(category: str) -> CodeownersTransform:
def required_codeowners_list(
files: list[str], owners: list[CodeownersTransform], after: list[str] = []
) -> list[RequiredCodeownersLine]:
return [RequiredCodeownersLine(file=file, owners=owners) for file in files]
return [
RequiredCodeownersLine(file=file, owners=owners, after=after) for file in files
]


REQUIRED_CI_CODEOWNERS_LINES = required_codeowners_list(
Expand Down

0 comments on commit e57037e

Please sign in to comment.