mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-03-26 21:33:25 +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.")
|
||||
|
||||
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]:
|
||||
if task_vars is None:
|
||||
task_vars = {}
|
||||
|
||||
Reference in New Issue
Block a user