We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b039f0b commit 4dec718Copy full SHA for 4dec718
aws_doc_sdk_examples_tools/agent/bin/main.py
@@ -15,7 +15,7 @@
15
IAM_UPDATES_PATH = AILLY_DIR_PATH / "iam_updates.json"
16
17
18
-def get_ailly_files(dir: Path):
+def get_ailly_files(dir: Path) -> List[Path]:
19
return [
20
file
21
for file in dir.iterdir()
@@ -24,7 +24,7 @@ def get_ailly_files(dir: Path):
24
25
26
@app.command()
27
-def update(iam_tributary_root: str, system_prompts: List[str] = []):
+def update(iam_tributary_root: str, system_prompts: List[str] = []) -> None:
28
doc_gen_root = Path(iam_tributary_root)
29
make_prompts(
30
doc_gen_root=doc_gen_root, system_prompts=system_prompts, out=AILLY_DIR_PATH
0 commit comments