Removed unnecessary blank lines

This commit is contained in:
John Goerzen 2005-05-24 00:10:11 +01:00
parent cf4a3b1861
commit d484b7da44

View File

@ -226,10 +226,8 @@ class IMAP4:
af, socktype, proto, canonname, sa = res[0] af, socktype, proto, canonname, sa = res[0]
self.sock = socket.socket(af, socktype, proto) self.sock = socket.socket(af, socktype, proto)
self.sock.connect(sa) self.sock.connect(sa)
self.file = self.sock.makefile('rb') self.file = self.sock.makefile('rb')
def read(self, size): def read(self, size):
"""Read 'size' bytes from remote.""" """Read 'size' bytes from remote."""
retval = '' retval = ''