From ff110f03e4bdf526e61d844e0c8296ad804d511f Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Mon, 18 Aug 2014 09:50:27 -0300 Subject: Apply PEP8 automatically --- py-fake-service/app/adapter/tag.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'py-fake-service/app/adapter/tag.py') diff --git a/py-fake-service/app/adapter/tag.py b/py-fake-service/app/adapter/tag.py index bc5bee95..c982f524 100644 --- a/py-fake-service/app/adapter/tag.py +++ b/py-fake-service/app/adapter/tag.py @@ -1,5 +1,5 @@ class Tag: - DEFAULT_TAGS = ["inbox", "sent", "trash", "drafts"] + DEFAULT_TAGS = ["inbox", "sent", "trash", "drafts"] def __init__(self, name, ident): self.counts = { @@ -7,7 +7,7 @@ class Tag: 'read': 0, 'starred': 0, 'reply': 0 - } + } self.ident = ident self.name = name.lower() @@ -17,7 +17,7 @@ class Tag: self.counts['total'] += 1 def increment_read(self): - self.counts['read'] += 1 + self.counts['read'] += 1 def decrement_count(self): self.counts['total'] -= 1 -- cgit v1.2.3