Skip to content

Commit cd71ee0

Browse files
author
Ran Isenberg
committed
cr fix
1 parent cd426fe commit cd71ee0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aws_lambda_powertools/utilities/parameters/appconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def __init__(
8484
self.client = boto3_client
8585
else:
8686
session = boto3_session or boto3.session.Session()
87-
self.client: AppConfigClient = session.client("appconfig", config=config)
87+
self.client: "AppConfigClient" = session.client("appconfig", config=config)
8888

8989
self.application = resolve_env_var_choice(
9090
choice=application, env=os.getenv(constants.SERVICE_NAME_ENV, "service_undefined")

aws_lambda_powertools/utilities/parameters/secrets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def __init__(
8080
self.client = boto3_client
8181
else:
8282
session = boto3_session or boto3.session.Session()
83-
self.client: SecretsManagerClient = session.client("secretsmanager", config=config)
83+
self.client: "SecretsManagerClient" = session.client("secretsmanager", config=config)
8484

8585
super().__init__()
8686

aws_lambda_powertools/utilities/parameters/ssm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def __init__(
9696
self.client = boto3_client
9797
else:
9898
session = boto3_session or boto3.session.Session()
99-
self.client: SSMClient = session.client("ssm", config=config)
99+
self.client: "SSMClient" = session.client("ssm", config=config)
100100

101101
super().__init__()
102102

0 commit comments

Comments
 (0)