[minor] remove semicolons

This commit is contained in:
Cosimo Lupo 2017-04-10 11:57:13 +01:00
parent 41d5db5bbc
commit 7fe876a803
No known key found for this signature in database
GPG Key ID: B61AAAD0B53A6419

View File

@ -138,8 +138,8 @@ class GlyphCoordinatesTest(object):
def test__bool__(self): def test__bool__(self):
g = GlyphCoordinates([(0,0), (0.,0)]) g = GlyphCoordinates([(0,0), (0.,0)])
assert bool(g) == False; assert bool(g) == False
g = GlyphCoordinates([(0,0), (1,0)]) g = GlyphCoordinates([(0,0), (1,0)])
assert bool(g) == True; assert bool(g) == True
g = GlyphCoordinates([(0,.5), (0,0)]) g = GlyphCoordinates([(0,.5), (0,0)])
assert bool(g) == True; assert bool(g) == True