Commits vergleichen

...

2 Commits

Autor SHA1 Nachricht Datum
Sebastian Tobie 85880d2867 added type hint for the diff. 2024-03-16 09:56:39 +01:00
Sebastian Tobie 380bc582e3 added returntype 2024-03-16 09:28:26 +01:00
3 geänderte Dateien mit 14 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,4 @@
---
minor_changes:
- Added an type hint to the update_doc function
- Added Type hint to the dictionary argument of the diff method

Datei anzeigen

@ -1,6 +1,6 @@
import pathlib
from copy import deepcopy
from typing import Any, Callable, ClassVar, Dict, NoReturn, Optional, Type, TypeVar, Union, overload
from typing import Any, Callable, ClassVar, Dict, NoReturn, Optional, Type, TypeVar, Union, overload, TypedDict
from ansible.utils.display import Display
import ansible.module_utils.basic as basic
@ -18,6 +18,13 @@ __all__ = (
T = TypeVar("T")
class TypedDiff(TypedDict):
before: str
after: str
before_header: Optional[str] = None
after_header: Optional[str] = None
def docify(input: Union[dict, AnsibleParameter]) -> dict:
options = dict()
for name, help in input.items():
@ -82,7 +89,7 @@ class AnsibleModule(object):
self.result[key] = value
@overload
def diff(self, diff: Dict[str, str]): # pragma: nocover
def diff(self, diff: TypedDiff): # pragma: nocover
pass
@overload

Datei anzeigen

@ -10,7 +10,7 @@ moduledir = pathlib.Path("plugins/modules")
regex = re.compile("DOCUMENTATION *= *r?(?P<quote>\"{3}|'{3})(---)?.*?(?P=quote)", re.MULTILINE | re.DOTALL)
def main():
def main() -> None:
try:
modules = list(moduledir.iterdir())
except: