1 2 3 4 5 6 7 8 9 10 11 12
from gitlab.base import * # noqa from gitlab.mixins import * # noqa class Namespace(RESTObject): pass class NamespaceManager(RetrieveMixin, RESTManager): _path = "/namespaces" _obj_cls = Namespace _list_filters = ("search",)