diff --git a/gitlab/base.py b/gitlab/base.py index 6334a6fc6..ed551ff65 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.