Skip to content

Commit ebdfec7

Browse files
authored
Merge pull request #1353 from JohnVillalovos/jlvillal/mypy_base
chore: add type hints to gitlab/base.py:RESTManager
2 parents c530f75 + 9c55593 commit ebdfec7

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)