summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gitlab/base.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/gitlab/base.py b/gitlab/base.py
index 6334a6f..ed551ff 100644
--- a/gitlab/base.py
+++ b/gitlab/base.py
@@ -261,6 +261,11 @@ class RESTManager(object):
_obj_cls: Optional[Type[RESTObject]] = None
_from_parent_attrs: Dict[str, Any] = {}
+ _computed_path: Optional[str]
+ _parent: Optional[RESTObject]
+ _parent_attrs: Dict[str, Any]
+ gitlab: Gitlab
+
def __init__(self, gl: Gitlab, parent: Optional[RESTObject] = None) -> None:
"""REST manager constructor.