simple pep8 compliance fixes

This commit is contained in:
minasss
2014-10-11 14:59:09 +02:00
parent 4d90f59e42
commit 1475742e53

View File

@@ -2,6 +2,7 @@ from imbox.imap import ImapTransport
from imbox.parser import parse_email
from imbox.query import build_search_query
class Imbox(object):
def __init__(self, hostname, username=None, password=None, ssl=True):
@@ -11,7 +12,6 @@ class Imbox(object):
self.password = password
self.connection = self.server.connect(username, password)
def logout(self):
self.connection.close()
self.connection.logout()