Skip to content

Commit 4dec718

Browse files
committed
Add some missing return types.
1 parent b039f0b commit 4dec718

File tree

1 file changed

+2
-2
lines changed
  • aws_doc_sdk_examples_tools/agent/bin

1 file changed

+2
-2
lines changed

aws_doc_sdk_examples_tools/agent/bin/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
IAM_UPDATES_PATH = AILLY_DIR_PATH / "iam_updates.json"
1616

1717

18-
def get_ailly_files(dir: Path):
18+
def get_ailly_files(dir: Path) -> List[Path]:
1919
return [
2020
file
2121
for file in dir.iterdir()
@@ -24,7 +24,7 @@ def get_ailly_files(dir: Path):
2424

2525

2626
@app.command()
27-
def update(iam_tributary_root: str, system_prompts: List[str] = []):
27+
def update(iam_tributary_root: str, system_prompts: List[str] = []) -> None:
2828
doc_gen_root = Path(iam_tributary_root)
2929
make_prompts(
3030
doc_gen_root=doc_gen_root, system_prompts=system_prompts, out=AILLY_DIR_PATH

0 commit comments

Comments
 (0)