scripts: Remove accidental semicolons in Python scripts

Making a clean slate for some pylint CI tests. Only enabling relatively
uncontroversial stuff.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2019-03-22 00:14:40 +01:00 committed by Kumar Gala
commit d83141535c
4 changed files with 9 additions and 9 deletions

View file

@ -508,10 +508,10 @@ class ElfHelper:
if apiaddr not in all_objs:
if apiaddr == 0:
self.debug("device instance at 0x%x has no associated subsystem"
% addr);
% addr)
else:
self.debug("device instance at 0x%x has unknown API 0x%x"
% (addr, apiaddr));
% (addr, apiaddr))
# API struct does not correspond to a known subsystem, skip it
continue