Skip to content

Commit 9c55593

Browse files
chore: add type hints to gitlab/base.py:RESTManager
Add some additional type hints to gitlab/base.py
1 parent 96d2805 commit 9c55593

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gitlab/base.py

+5
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,11 @@ class RESTManager(object):
261261
_obj_cls: Optional[Type[RESTObject]] = None
262262
_from_parent_attrs: Dict[str, Any] = {}
263263

264+
_computed_path: Optional[str]
265+
_parent: Optional[RESTObject]
266+
_parent_attrs: Dict[str, Any]
267+
gitlab: Gitlab
268+
264269
def __init__(self, gl: Gitlab, parent: Optional[RESTObject] = None) -> None:
265270
"""REST manager constructor.
266271

0 commit comments

Comments
 (0)