summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/ldap.py
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2022-06-03 16:31:38 -0700
committerJohn L. Villalovos <john@sodarock.com>2022-06-04 09:18:22 -0700
commitd0b0811211f69f08436dcf7617c46617fe5c0b8b (patch)
treebb0e589646740ccf46450f7e0c552ed5b3b8b0b8 /gitlab/v4/objects/ldap.py
parentd6870a981259ee44c64210a756b63dc19a6f3957 (diff)
downloadgitlab-d0b0811211f69f08436dcf7617c46617fe5c0b8b.tar.gz
chore: enable pylint check: "no-else-return"
Enable the pylint check "no-else-return" and fix the errors detected.
Diffstat (limited to 'gitlab/v4/objects/ldap.py')
-rw-r--r--gitlab/v4/objects/ldap.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/gitlab/v4/objects/ldap.py b/gitlab/v4/objects/ldap.py
index 4a01061..053cd14 100644
--- a/gitlab/v4/objects/ldap.py
+++ b/gitlab/v4/objects/ldap.py
@@ -49,5 +49,4 @@ class LDAPGroupManager(RESTManager):
obj = self.gitlab.http_list(path, **data)
if isinstance(obj, list):
return [self._obj_cls(self, item) for item in obj]
- else:
- return RESTObjectList(self, self._obj_cls, obj)
+ return RESTObjectList(self, self._obj_cls, obj)