From f0bc5568a74d555b332671d0f7f0d950688e2d61 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 31 Dec 2016 20:27:52 +0100 Subject: style: fix E703 violations E703: statement ends with a semicolon Signed-off-by: Igor Gnatenko --- tools/cmake2meson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/cmake2meson.py b/tools/cmake2meson.py index 5cf6dfe..7d6d02a 100755 --- a/tools/cmake2meson.py +++ b/tools/cmake2meson.py @@ -46,7 +46,7 @@ class Lexer: def lex(self, code): lineno = 1 line_start = 0 - loc = 0; + loc = 0 col = 0 while(loc < len(code)): matched = False -- cgit v1.1