Removed some unsupported resource methods from Organizations

This commit is contained in:
2017-08-31 13:45:39 +02:00
parent a177527e77
commit 3c3beea419

View File

@@ -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"