diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-11-05 21:01:58 +0100 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2021-11-08 14:11:40 -0800 |
commit | c0d881064f7c90f6a510db483990776ceb17b9bd (patch) | |
tree | bbe635558a2bfb48fd64f24f48eea1c5b093a029 /gitlab/v4/objects/custom_attributes.py | |
parent | 472b300154c5e59289d83f0b34d24bc52eb9b6da (diff) | |
download | gitlab-c0d881064f7c90f6a510db483990776ceb17b9bd.tar.gz |
refactor: use new-style formatting for named placeholders
Diffstat (limited to 'gitlab/v4/objects/custom_attributes.py')
-rw-r--r-- | gitlab/v4/objects/custom_attributes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gitlab/v4/objects/custom_attributes.py b/gitlab/v4/objects/custom_attributes.py index 48296ca..aed1965 100644 --- a/gitlab/v4/objects/custom_attributes.py +++ b/gitlab/v4/objects/custom_attributes.py @@ -16,7 +16,7 @@ class GroupCustomAttribute(ObjectDeleteMixin, RESTObject): class GroupCustomAttributeManager(RetrieveMixin, SetMixin, DeleteMixin, RESTManager): - _path = "/groups/%(group_id)s/custom_attributes" + _path = "/groups/{group_id}/custom_attributes" _obj_cls = GroupCustomAttribute _from_parent_attrs = {"group_id": "id"} @@ -26,7 +26,7 @@ class ProjectCustomAttribute(ObjectDeleteMixin, RESTObject): class ProjectCustomAttributeManager(RetrieveMixin, SetMixin, DeleteMixin, RESTManager): - _path = "/projects/%(project_id)s/custom_attributes" + _path = "/projects/{project_id}/custom_attributes" _obj_cls = ProjectCustomAttribute _from_parent_attrs = {"project_id": "id"} @@ -36,6 +36,6 @@ class UserCustomAttribute(ObjectDeleteMixin, RESTObject): class UserCustomAttributeManager(RetrieveMixin, SetMixin, DeleteMixin, RESTManager): - _path = "/users/%(user_id)s/custom_attributes" + _path = "/users/{user_id}/custom_attributes" _obj_cls = UserCustomAttribute _from_parent_attrs = {"user_id": "id"} |