Skip to content

Commit 469b206

Browse files
authored
Changed the reference from user to group (#728)
1 parent 8b67ca8 commit 469b206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cid/helpers/quicksight/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ def select_group(self):
682682
group_name = get_parameter(
683683
param_name='quicksight-group',
684684
message="Please select QuickSight Group to use",
685-
choices={f"{user.get('UserName')} ({user.get('Email')}, {user.get('Role')})":user.get('UserName') for user in groups}
685+
choices={f"{group.get('GroupName')} ({group.get('Description')})":group.get('GroupName') for group in groups}
686686
)
687687
for group in groups:
688688
if group.get('GroupName') == group_name:

0 commit comments

Comments
 (0)