Commit 80b3fe75 authored by R David Murray's avatar R David Murray

PEP8 fixup on previous patch, remove unused import in test_email.

parent 0cd89a19
...@@ -129,7 +129,7 @@ class Generator: ...@@ -129,7 +129,7 @@ class Generator:
self.write(self._NL) self.write(self._NL)
laststripped = lines[-1].rstrip('\r\n') laststripped = lines[-1].rstrip('\r\n')
self.write(laststripped) self.write(laststripped)
if len(lines[-1])!=len(laststripped): if len(lines[-1]) != len(laststripped):
self.write(self._NL) self.write(self._NL)
def _write(self, msg): def _write(self, msg):
......
...@@ -9,7 +9,6 @@ import time ...@@ -9,7 +9,6 @@ import time
import base64 import base64
import difflib import difflib
import unittest import unittest
import warnings
import textwrap import textwrap
from io import StringIO, BytesIO from io import StringIO, BytesIO
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment