diff options
-rw-r--r-- | gitlab/v4/objects.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 956038b..a2b4321 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -197,6 +197,7 @@ class UserImpersonationTokenManager(NoUpdateMixin, RESTManager): _from_parent_attrs = {'user_id': 'id'} _create_attrs = (('name', 'scopes'), ('expires_at',)) _list_filters = ('state',) + _types = {'scopes': types.ListAttribute} class UserProject(RESTObject): |