diff --git a/Tests/test_file_eps.py b/Tests/test_file_eps.py index 2313b292c..bd7c79f82 100644 --- a/Tests/test_file_eps.py +++ b/Tests/test_file_eps.py @@ -76,7 +76,7 @@ class TestFileEps(PillowTestCase): plot_image = Image.open("Tests/images/reqd_showpage.eps") target = Image.open("Tests/images/reqd_showpage.png") - #should not crash/hang + # should not crash/hang plot_image.load() # fonts could be slightly different self.assert_image_similar(plot_image, target, 6) diff --git a/Tests/test_font_pcf.py b/Tests/test_font_pcf.py index 9d7d4d558..0b757b963 100644 --- a/Tests/test_font_pcf.py +++ b/Tests/test_font_pcf.py @@ -20,7 +20,7 @@ class TestFontPcf(PillowTestCase): with open(fontname, "rb") as test_file: font = PcfFontFile.PcfFontFile(test_file) self.assertIsInstance(font, FontFile.FontFile) - #check the number of characters in the font + # check the number of characters in the font self.assertEqual(len([_f for _f in font.glyph if _f]), 223) tempname = self.tempfile("temp.pil")