Skip to content

Commit

Permalink
Minor fix for f strings (#1005)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaehyi-aws authored Nov 7, 2024
1 parent 995f113 commit 9ed5958
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cid/helpers/quicksight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1415,10 +1415,10 @@ def _build_params_for_create_update_dash(self, definition: dict, permissions: bo
dataset_declarations = create_parameters['Definition'].get('DataSetIdentifierDeclarations', [])
for ds_dec in dataset_declarations:
if identifier == ds_dec['Identifier']:
logger.debug('Dataset {identifier} matched by Name')
logger.debug(f'Dataset {identifier} matched by Name')
break # all good
elif arn.split('/')[-1] == ds_dec['DataSetArn'].split('/')[-1]:
logger.debug('Dataset {identifier} matched by Id')
logger.debug(f'Dataset {identifier} matched by Id')
identifier = ds_dec['Identifier']
break
else:
Expand Down

0 comments on commit 9ed5958

Please sign in to comment.