Skip to content

Commit

Permalink
rule_var_depends_append: improve description
Browse files Browse the repository at this point in the history
Fix the message to represent what this rule actually checks.
  • Loading branch information
amuetzel authored and priv-kweihmann committed Aug 1, 2024
1 parent 4fba5a5 commit 048f849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oelint_adv/rule_base/rule_var_depends_append.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class VarDependsAppend(Rule):
def __init__(self) -> None:
super().__init__(id='oelint.vars.dependsappend',
severity='error',
message='DEPENDS should only be appended, not overwritten as an include or inherit')
message='DEPENDS should only be appended, not overwritten after an include or inherit')

def check(self, _file: str, stash: Stash) -> List[Tuple[str, int, str]]:
res = []
Expand Down

0 comments on commit 048f849

Please sign in to comment.