Skip to content

Commit

Permalink
chore: auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 1, 2024
1 parent 627f3a7 commit 474eca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansiblelint/rules/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class CustomAnsibleModule(basic.AnsibleModule): # type: ignore[misc]

def __init__(self, *args: str, **kwargs: str) -> None:
"""Initialize AnsibleModule mock."""
super().__init__(no_log = True, *args, **kwargs)
super().__init__(no_log=True, *args, **kwargs)
raise ValidationPassedError


Expand Down

0 comments on commit 474eca5

Please sign in to comment.