Fix autocomplete annotation
This commit is contained in:
parent
7bf6e1ba9c
commit
d4358a067a
1 changed files with 1 additions and 1 deletions
2
ssm.py
2
ssm.py
|
@ -28,7 +28,7 @@ class SSMPath(pathlib.PurePosixPath):
|
||||||
return SSMPath(value)
|
return SSMPath(value)
|
||||||
|
|
||||||
|
|
||||||
ProfileArg = typing.Annotated[str, typer.Argument(autocompletion=aws_profiles)]
|
ProfileArg = typing.Annotated[str, typer.Argument(autocompletion=lambda: aws_profiles)]
|
||||||
|
|
||||||
|
|
||||||
def get_client(profile: str) -> botocore.client.BaseClient:
|
def get_client(profile: str) -> botocore.client.BaseClient:
|
||||||
|
|
Loading…
Reference in a new issue