From fc8fc7500ba98fceae6a9d6634606dd94270f53e Mon Sep 17 00:00:00 2001 From: Vamsi Shankar Date: Fri, 29 Sep 2023 14:41:44 -0400 Subject: [PATCH] Update process.py - Made changes for main fucntion to return graph Made changes for returning graph from main function; to draw graph --- process.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process.py b/process.py index 0985c40..f5b4eda 100755 --- a/process.py +++ b/process.py @@ -100,7 +100,7 @@ def main(): log.error("Unable to load saved instantiation: %s", e) return 1 else: - inst = main_process(args, asp, aspc, file_contexts, primary_filesystem, + inst,graph = main_process(args, asp, aspc, file_contexts, primary_filesystem, android_version) if inst is None: @@ -267,7 +267,7 @@ def main_process(args, asp, aspc, file_contexts, primary_filesystem, android_ver #inst.file_mapping = {} aspc._save_db(inst, "inst") - return inst + return inst,graph def make_cute(G, show_labels=True): import math