From c066cb6dc1da2f2cca853a59a06a5754bf30eb46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Tue, 21 Sep 2021 18:04:00 +0200 Subject: [PATCH] scripts: apibuild: fix spacing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Syntax check reports: E226 missing whitespace around arithmetic operator Signed-off-by: Ján Tomko --- scripts/apibuild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/apibuild.py b/scripts/apibuild.py index 722fd33f0e..9b29466e1d 100755 --- a/scripts/apibuild.py +++ b/scripts/apibuild.py @@ -604,10 +604,10 @@ class CLexer: continue j = i - while (j + 1) < nline and line[j+1] in "+-*><=/%&!|": + while (j + 1) < nline and line[j + 1] in "+-*><=/%&!|": j = j + 1 - self.tokens.append(('op', line[i:j+1])) + self.tokens.append(('op', line[i:j + 1])) i = j + 1 continue s = i