added returntype

Dieser Commit ist enthalten in:
Sebastian Tobie 2024-03-16 09:28:26 +01:00
Ursprung 8190ee94d3
Commit 380bc582e3
2 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,3 @@
---
minor_changes:
- Added an type hint to the update_doc function

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) regex = re.compile("DOCUMENTATION *= *r?(?P<quote>\"{3}|'{3})(---)?.*?(?P=quote)", re.MULTILINE | re.DOTALL)
def main(): def main() -> None:
try: try:
modules = list(moduledir.iterdir()) modules = list(moduledir.iterdir())
except: except: