summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/geo_nodes.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/geo_nodes.py')
-rw-r--r--gitlab/v4/objects/geo_nodes.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/gitlab/v4/objects/geo_nodes.py b/gitlab/v4/objects/geo_nodes.py
index ebeb0d6..2f6d0c1 100644
--- a/gitlab/v4/objects/geo_nodes.py
+++ b/gitlab/v4/objects/geo_nodes.py
@@ -32,8 +32,6 @@ class GeoNode(SaveMixin, ObjectDeleteMixin, RESTObject):
"""
path = f"/geo_nodes/{self.get_id()}/repair"
server_data = self.manager.gitlab.http_post(path, **kwargs)
- if TYPE_CHECKING:
- assert isinstance(server_data, dict)
self._update_attrs(server_data)
@cli.register_custom_action("GeoNode")