From f0fe0f9d84afd523372c66b91c267077c74d64e2 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Fri, 30 Oct 2015 17:06:19 +0200 Subject: [PATCH] Remove unnecessary pass statements. --- go_optouts/store/interface.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/go_optouts/store/interface.py b/go_optouts/store/interface.py index 5882cea..13f6ac3 100644 --- a/go_optouts/store/interface.py +++ b/go_optouts/store/interface.py @@ -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