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"