mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 19:32:19 +00:00
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:
parent
81b63c3d78
commit
c066cb6dc1
@ -604,10 +604,10 @@ class CLexer:
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
j = i
|
j = i
|
||||||
while (j + 1) < nline and line[j+1] in "+-*><=/%&!|":
|
while (j + 1) < nline and line[j + 1] in "+-*><=/%&!|":
|
||||||
j = j + 1
|
j = j + 1
|
||||||
|
|
||||||
self.tokens.append(('op', line[i:j+1]))
|
self.tokens.append(('op', line[i:j + 1]))
|
||||||
i = j + 1
|
i = j + 1
|
||||||
continue
|
continue
|
||||||
s = i
|
s = i
|
||||||
|
Loading…
x
Reference in New Issue
Block a user