diff options
author | John L. Villalovos <john@sodarock.com> | 2021-03-01 17:57:01 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-03-01 17:57:01 -0800 |
commit | 9c55593ae6a7308176710665f8bec094d4cadc2e (patch) | |
tree | 506724df9b722485473d61e99bd5339dd660e3a9 | |
parent | 96d2805b5bf372cb79c2b7db5c1e499c41e477c1 (diff) | |
download | gitlab-9c55593ae6a7308176710665f8bec094d4cadc2e.tar.gz |
chore: add type hints to gitlab/base.py:RESTManager
Add some additional type hints to gitlab/base.py
-rw-r--r-- | gitlab/base.py | 5 |
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. |