From 94c9ada946c97a724d90b15506d31a120c97269d Mon Sep 17 00:00:00 2001 From: Pratik Mohapatra Date: Thu, 14 Mar 2024 16:07:15 +0530 Subject: [PATCH] trying to fix the lint issue --- capa/ghidra/capa_explorer.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/capa/ghidra/capa_explorer.py b/capa/ghidra/capa_explorer.py index 0edb8f825..0eb22e4ad 100644 --- a/capa/ghidra/capa_explorer.py +++ b/capa/ghidra/capa_explorer.py @@ -360,8 +360,9 @@ def main(): return capa.main.E_EMPTY_REPORT user_choice = askChoice( # type: ignore [name-defined] # noqa: F821 - "Choose b/w bookmarks & comments", "preferred action:", ["bookmarks", "comments", "both", "none"], "both") - + "Choose b/w bookmarks & comments", "preferred action:", ["bookmarks", "comments", "both", "none"], "both" + ) + if user_choice == "bookmarks": for item in parse_json(capa_data): item.bookmark_functions()