Skip to content

Commit

Permalink
Cleaned
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanBalfanz committed Mar 13, 2012
1 parent b3a07b6 commit ed94164
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sendgrid/mixins.py
Expand Up @@ -25,13 +25,11 @@ def add_to_unsubscribes(self):
Adds the ``User``.``email`` from the unsubscribe list. Adds the ``User``.``email`` from the unsubscribe list.
""" """
result = add_unsubscribes(email=self.email) result = add_unsubscribes(email=self.email)
print result
return result return result


def delete_from_unsubscribes(self): def delete_from_unsubscribes(self):
""" """
Removes the ``User``.``email`` from the unsubscribe list. Removes the ``User``.``email`` from the unsubscribe list.
""" """
result = delete_unsubscribes(email=self.email) result = delete_unsubscribes(email=self.email)
print result
return result return result

0 comments on commit ed94164

Please sign in to comment.