Skip to content

Commit

Permalink
code review style changes _ssm -> ssm
Browse files Browse the repository at this point in the history
  • Loading branch information
wmattern0 committed Nov 18, 2022
1 parent dddd1e2 commit 54a1374
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap_bing_ads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ def save_refresh_token_to_ssm(oauth_tokens):
import boto3
LOGGER.info(f"saving refresh token to SSM now at: {CONFIG['refresh_token_ssm_param']}")

_ssm = boto3.client("ssm")
put_param_output: dict = _ssm.put_parameter(Name=CONFIG['refresh_token_ssm_param'], Value=oauth_tokens.refresh_token, Overwrite=True)
ssm = boto3.client("ssm")
put_param_output: dict = ssm.put_parameter(Name=CONFIG['refresh_token_ssm_param'], Value=oauth_tokens.refresh_token, Overwrite=True)

LOGGER.info(f"put_param_output: {str(put_param_output)}")
except ImportError as e:
Expand Down

0 comments on commit 54a1374

Please sign in to comment.