diff options
Diffstat (limited to 'gitlab/v4/objects/geo_nodes.py')
-rw-r--r-- | gitlab/v4/objects/geo_nodes.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gitlab/v4/objects/geo_nodes.py b/gitlab/v4/objects/geo_nodes.py index 913bfca..0652702 100644 --- a/gitlab/v4/objects/geo_nodes.py +++ b/gitlab/v4/objects/geo_nodes.py @@ -4,6 +4,12 @@ from gitlab.base import * # noqa from gitlab.mixins import * # noqa +__all__ = [ + "GeoNode", + "GeoNodeManager", +] + + class GeoNode(SaveMixin, ObjectDeleteMixin, RESTObject): @cli.register_custom_action("GeoNode") @exc.on_http_error(exc.GitlabRepairError) |