Skip to content

Commit

Permalink
amc
Browse files Browse the repository at this point in the history
  • Loading branch information
benpankow committed Nov 15, 2024
1 parent 6400019 commit bb94e62
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ def replace_attributes(
skippable: bool = ...,
group_name: Optional[str] = ...,
code_version: Optional[str] = ...,
automation_condition: Optional[AutomationCondition] = ...,
owners: Optional[Sequence[str]] = ...,
tags: Optional[Mapping[str, str]] = ...,
kinds: Optional[Set[str]] = ...,
Expand All @@ -325,7 +326,9 @@ def replace_attributes(
group_name=group_name if group_name is not ... else self.group_name,
code_version=code_version if code_version is not ... else self.code_version,
freshness_policy=self.freshness_policy,
automation_condition=self.automation_condition,
automation_condition=automation_condition
if automation_condition is not ...
else self.automation_condition,
owners=owners if owners is not ... else self.owners,
tags=tags if tags is not ... else current_tags_without_kinds,
kinds=kinds if kinds is not ... else self.kinds,
Expand Down

0 comments on commit bb94e62

Please sign in to comment.