Reduce ignore list for apollo_tree

This commit is contained in:
Mustafa Gezen 2023-02-04 01:32:25 +01:00
parent 02b4192be5
commit fe376df854
Signed by untrusted user who does not match committer: mustafa
GPG Key ID: DCDF010D946438C1

View File

@ -274,7 +274,7 @@ async def run_apollo_tree(
manual: bool, manual: bool,
auto_scan: bool, auto_scan: bool,
path: str, path: str,
ignore: list, ignore: list[str],
product_name: str, product_name: str,
): ):
if manual: if manual:
@ -374,7 +374,7 @@ if __name__ == "__main__":
p_args.manual, p_args.manual,
p_args.auto_scan, p_args.auto_scan,
p_args.path, p_args.path,
p_args.ignore, [y for x in p_args.ignore for y in x],
p_args.product_name, p_args.product_name,
) )
) )