summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-02-26 07:51:19 +0100
committerGitHub <noreply@github.com>2021-02-26 07:51:19 +0100
commitecb686d8f263fadfd113d43178d2200be17d766e (patch)
treee29554e7e5cd6e86fa3ebd483c784e3beb765b36
parent666225221deec06014d5ccff46d1c21d5828c977 (diff)
parent7c4e62597365e8227b8b63ab8ba0c94cafc7abc8 (diff)
downloadgitlab-ecb686d8f263fadfd113d43178d2200be17d766e.tar.gz
Merge pull request #1335 from JohnVillalovos/jlvillal/remove_dup_classes
fix: remove duplicate class definitions in v4/objects/users.py
-rw-r--r--gitlab/v4/objects/users.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/gitlab/v4/objects/users.py b/gitlab/v4/objects/users.py
index 84e52ad..d6643ae 100644
--- a/gitlab/v4/objects/users.py
+++ b/gitlab/v4/objects/users.py
@@ -43,8 +43,6 @@ __all__ = [
"UserGPGKeyManager",
"UserKey",
"UserKeyManager",
- "UserStatus",
- "UserStatusManager",
"UserIdentityProviderManager",
"UserImpersonationToken",
"UserImpersonationTokenManager",
@@ -349,16 +347,6 @@ class UserKeyManager(ListMixin, CreateMixin, DeleteMixin, RESTManager):
_create_attrs = (("title", "key"), tuple())
-class UserStatus(RESTObject):
- pass
-
-
-class UserStatusManager(GetWithoutIdMixin, RESTManager):
- _path = "/users/%(user_id)s/status"
- _obj_cls = UserStatus
- _from_parent_attrs = {"user_id": "id"}
-
-
class UserIdentityProviderManager(DeleteMixin, RESTManager):
"""Manager for user identities.