From 3c3beea419b76d11d44419880ff676dfbe3d625d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 31 Aug 2017 13:45:39 +0200 Subject: [PATCH] Removed some unsupported resource methods from Organizations --- pillarsdk/organizations.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pillarsdk/organizations.py b/pillarsdk/organizations.py index d70ed1e..fa9f0fa 100644 --- a/pillarsdk/organizations.py +++ b/pillarsdk/organizations.py @@ -1,12 +1,8 @@ from .resource import List from .resource import Find -from .resource import Create -from .resource import Post -from .resource import Update -from .resource import Delete -class Organization(List, Find, Create, Post, Update, Delete): +class Organization(List, Find): """Organization class wrapping the REST nodes endpoint """ path = "organizations"