From 6006e87c5e6af0215f0016a6ea136db075b965b8 Mon Sep 17 00:00:00 2001 From: William Ballenthin Date: Fri, 5 Mar 2021 09:40:43 -0700 Subject: [PATCH] pep8 --- scripts/match-function-id.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/match-function-id.py b/scripts/match-function-id.py index 32f128be..c37702ba 100644 --- a/scripts/match-function-id.py +++ b/scripts/match-function-id.py @@ -72,7 +72,12 @@ def main(argv=None): parser = argparse.ArgumentParser(description="FLIRT match each function") parser.add_argument("sample", type=str, help="Path to sample to analyze") - parser.add_argument("-F", "--function", type=lambda x: int(x, 0x10), help="match a specific function by VA, rather than add functions") + parser.add_argument( + "-F", + "--function", + type=lambda x: int(x, 0x10), + help="match a specific function by VA, rather than add functions", + ) parser.add_argument( "--signature", action="append", @@ -126,4 +131,4 @@ def main(argv=None): if __name__ == "__main__": - sys.exit(main()) \ No newline at end of file + sys.exit(main())