From 2cadadc9a8ee84d9bee48fa0e6fa87c3aa3cc478 Mon Sep 17 00:00:00 2001 From: TuanaCelik Date: Tue, 10 Dec 2024 14:45:20 +0100 Subject: [PATCH] small fix --- _includes/code/python/howto.configure.rbac.roles.py | 1 + 1 file changed, 1 insertion(+) diff --git a/_includes/code/python/howto.configure.rbac.roles.py b/_includes/code/python/howto.configure.rbac.roles.py index ddaae67e8..52d0e7100 100644 --- a/_includes/code/python/howto.configure.rbac.roles.py +++ b/_includes/code/python/howto.configure.rbac.roles.py @@ -86,6 +86,7 @@ # START ListUserRoles user_roles = admin_client.roles.roles.by_user(user="jane-doe") + for role in user_roles: print(role) # END ListUserRoles