Skip to content

Commit

Permalink
Add mixins to Image
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Tkachenko authored and lpramuk committed Sep 26, 2023
1 parent 4c549da commit 31ccef5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nailgun/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -2901,7 +2901,12 @@ def list_smart_variables(self, synchronous=True, **kwargs):
return _handle_response(response, self._server_config, synchronous)


class Image(Entity):
class Image(
Entity,
EntityCreateMixin,
EntityDeleteMixin,
EntityReadMixin,
EntityUpdateMixin):
"""A representation of a Image entity."""

def __init__(self, server_config=None, **kwargs):
Expand Down

0 comments on commit 31ccef5

Please sign in to comment.