mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-08 14:22:56 +00:00
Adjust typing of run().
Ref: https://github.com/ansible/ansible/pull/85326
This commit is contained in:
@@ -227,7 +227,7 @@ class ActionModuleBase(ActionBase, metaclass=abc.ABCMeta):
|
|||||||
module.fail_json(msg="Not implemented.")
|
module.fail_json(msg="Not implemented.")
|
||||||
|
|
||||||
def run(
|
def run(
|
||||||
self, tmp: None = None, task_vars: dict[str, t.Any] | None = None
|
self, tmp: str | None = None, task_vars: dict[str, t.Any] | None = None
|
||||||
) -> dict[str, t.Any]:
|
) -> dict[str, t.Any]:
|
||||||
if task_vars is None:
|
if task_vars is None:
|
||||||
task_vars = {}
|
task_vars = {}
|
||||||
|
|||||||
Reference in New Issue
Block a user