summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/groups.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/groups.py')
-rw-r--r--gitlab/v4/objects/groups.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py
index 7479cfb..98bbd16 100644
--- a/gitlab/v4/objects/groups.py
+++ b/gitlab/v4/objects/groups.py
@@ -1,6 +1,4 @@
-from typing import Any, BinaryIO, cast, Dict, List, Optional, Type, TYPE_CHECKING, Union
-
-import requests
+from typing import Any, BinaryIO, cast, Dict, List, Optional, Type, Union
import gitlab
from gitlab import cli
@@ -205,8 +203,6 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject):
"expires_at": expires_at,
}
server_data = self.manager.gitlab.http_post(path, post_data=data, **kwargs)
- if TYPE_CHECKING:
- assert isinstance(server_data, dict)
self._update_attrs(server_data)
@cli.register_custom_action("Group", ("group_id",))
@@ -303,7 +299,7 @@ class GroupManager(CRUDMixin, RESTManager):
name: str,
parent_id: Optional[str] = None,
**kwargs: Any,
- ) -> Union[Dict[str, Any], requests.Response]:
+ ) -> Dict[str, Any]:
"""Import a group from an archive file.
Args: