Skip to content

Commit

Permalink
remove self from the interface definition
Browse files Browse the repository at this point in the history
  • Loading branch information
claytron committed Feb 10, 2012
1 parent 216941f commit eead2a2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions collective/lexicon/interfaces.py
Expand Up @@ -4,25 +4,25 @@

class IVocabularyManager(Interface):

def add_term(self, vocab_id, term):
def add_term(vocab_id, term):
pass

def remove_term(self, vocab_id, term_id):
def remove_term(vocab_id, term_id):
pass

def get_vocab(self, vocab_id):
def get_vocab(vocab_id):
pass

def get_vocab_items(self, vocab_id):
def get_vocab_items(vocab_id):
pass

def add_vocab(self, id, title):
def add_vocab(id, title):
pass

def remove_vocab(self, id):
def remove_vocab(id):
pass

def order(self, vocab_id, order):
def order(vocab_id, order):
pass


Expand Down

0 comments on commit eead2a2

Please sign in to comment.