scripts: apibuild: fix spacing

Syntax check reports:
E226 missing whitespace around arithmetic operator

Signed-off-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Ján Tomko 2021-09-21 18:04:00 +02:00
parent 81b63c3d78
commit c066cb6dc1

View File

@ -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