Skip to content

Commit

Permalink
Fix for improper logging of ansible-basic.py invoked messages
Browse files Browse the repository at this point in the history
  • Loading branch information
tanwigeetika1618 committed Oct 1, 2024
1 parent 18a361d commit 627f3a7
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 627f3a7

Please sign in to comment.