From 7fe876a803d14559f8318226a4152d1fd728cfb3 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Mon, 10 Apr 2017 11:57:13 +0100 Subject: [PATCH] [minor] remove semicolons --- Tests/ttLib/tables/_g_l_y_f_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tests/ttLib/tables/_g_l_y_f_test.py b/Tests/ttLib/tables/_g_l_y_f_test.py index abaca4aac..7bb300fc6 100644 --- a/Tests/ttLib/tables/_g_l_y_f_test.py +++ b/Tests/ttLib/tables/_g_l_y_f_test.py @@ -138,8 +138,8 @@ class GlyphCoordinatesTest(object): def test__bool__(self): g = GlyphCoordinates([(0,0), (0.,0)]) - assert bool(g) == False; + assert bool(g) == False g = GlyphCoordinates([(0,0), (1,0)]) - assert bool(g) == True; + assert bool(g) == True g = GlyphCoordinates([(0,.5), (0,0)]) - assert bool(g) == True; + assert bool(g) == True