From 9c55593ae6a7308176710665f8bec094d4cadc2e Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Mon, 1 Mar 2021 17:57:01 -0800 Subject: [PATCH] chore: add type hints to gitlab/base.py:RESTManager Add some additional type hints to gitlab/base.py --- gitlab/base.py | 5 +++++ 1 file changed, 5 insertions(+) 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.