Skip to content

Commit

Permalink
Remove unnecessary pass statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
hodgestar committed Oct 30, 2015
1 parent 4c50c28 commit f0fe0f9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions go_optouts/store/interface.py
Expand Up @@ -14,16 +14,12 @@ class IOptOutCollection(zope.interface.Interface):

def get(address_type, address):
""" Retrieve the opt out for an address. """
pass

def put(address_type, address):
""" Store a record of an opt out for an address. """
pass

def delete(address_type, address):
""" Remove an opt out for an address. """
pass

def count():
""" Return the number of opt outs. """
pass

0 comments on commit f0fe0f9

Please sign in to comment.