Skip to content

Commit

Permalink
fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
ganeshrn committed Nov 30, 2022
1 parent 6a386bb commit 4f15413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansiblelint/rules/validate_module_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ValidationPassed(Exception):
"""Exception to be raised when validation passes."""


class CustomAnsibleModule(basic.AnsibleModule):
class CustomAnsibleModule(basic.AnsibleModule): # type: ignore
"""Mock AnsibleModule class."""

def __init__(self, *args: str, **kwargs: str) -> None:
Expand Down

0 comments on commit 4f15413

Please sign in to comment.