Skip to content

Commit

Permalink
support theme
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov-aws committed Mar 22, 2024
1 parent b4ddc17 commit 3602e3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cid/helpers/quicksight/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ def _build_params_for_create_update_dash(self, definition: dict, permissions: bo
}
theme = definition.get('theme')
if theme:
if not theme.startswith('arn:')
if not theme.startswith('arn:'):
theme_arn = 'arn:aws:quicksight::aws:theme/' + theme
else:
raise NotImplementedError('Only standard themes are supported now.')
Expand Down

0 comments on commit 3602e3c

Please sign in to comment.