diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-02-14 10:57:13 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-02-14 10:57:13 +0100 |
commit | 44d0dc54fb7edf7de4e50ca34d430fe734c0e8cc (patch) | |
tree | 8b22474a3915b0340ee00c14b566b5a5243329cd /gitlab/__init__.py | |
parent | 58433d2b1854eb4e112c499d52d8dd0fd6dba094 (diff) | |
download | gitlab-44d0dc54fb7edf7de4e50ca34d430fe734c0e8cc.tar.gz |
remove unused _returnClass attribute
Diffstat (limited to 'gitlab/__init__.py')
-rw-r--r-- | gitlab/__init__.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 1bb148e..a947084 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -351,9 +351,6 @@ class Gitlab(object): raise_error_from_response(r, GitlabListError) cls = obj_class - if obj_class._returnClass: - cls = obj_class._returnClass - cls_kwargs = kwargs.copy() # Add _from_api manually, because we are not creating objects |