File tree 3 files changed +3
-3
lines changed
aws_lambda_powertools/utilities/parameters 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def __init__(
84
84
self .client = boto3_client
85
85
else :
86
86
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 )
88
88
89
89
self .application = resolve_env_var_choice (
90
90
choice = application , env = os .getenv (constants .SERVICE_NAME_ENV , "service_undefined" )
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def __init__(
80
80
self .client = boto3_client
81
81
else :
82
82
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 )
84
84
85
85
super ().__init__ ()
86
86
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ def __init__(
96
96
self .client = boto3_client
97
97
else :
98
98
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 )
100
100
101
101
super ().__init__ ()
102
102
You can’t perform that action at this time.
0 commit comments