Skip to content

Commit a362710

Browse files
authored
Merge pull request #20 from fosslight/dev
Revert android_binary_analysis
2 parents b307b01 + fc6e620 commit a362710

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/fosslight_android/android_binary_analysis.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
def do_multi_process(func, input_list):
9090
manager = multiprocessing.Manager()
9191
return_list = manager.list()
92-
splited_data = np.array_split(input_list, num_cores) # sus
92+
splited_data = np.array_split(input_list, num_cores)
9393
splited_data = [x.tolist() for x in splited_data]
9494

9595
parmap.map(func, splited_data, return_list, pm_pbar=True,
@@ -763,6 +763,7 @@ def main():
763763
notice_check_ok = False
764764
base_binary_txt = ""
765765
auto_fill_oss_name = True
766+
_NOTICE_CHECKLIST_TYPE = False
766767
analyze_source = False
767768
path_to_exclude = []
768769

0 commit comments

Comments
 (0)