fix: vverbose.py: render_call variable assigned but never used

Closes #3016
This commit is contained in:
Willi Ballenthin
2026-04-22 09:14:14 +03:00
committed by Willi Ballenthin
parent d3e2bac803
commit 527fb397ea
2 changed files with 3 additions and 1 deletions

View File

@@ -18,6 +18,8 @@
- fix: capabilities/common.py: if va: drops address 0x0 @williballenthin #3015
- fix: vverbose.py: render_call variable assigned but never used @williballenthin #3016
### capa Explorer Web
### capa Explorer IDA Pro plugin

View File

@@ -101,7 +101,7 @@ def render_locations(
render_call = v.render_short_call
else:
render_call = v.render_call
s = f"{v.render_call(layout, location)}\nand {(len(locations) - 1)} more..."
s = f"{render_call(layout, location)}\nand {(len(locations) - 1)} more..."
console.write(hanging_indent(s, indent + 1))
elif len(locations) > 4: