From fe376df8548424ac8d6526c81ec507639b13541d Mon Sep 17 00:00:00 2001 From: Mustafa Gezen Date: Sat, 4 Feb 2023 01:32:25 +0100 Subject: [PATCH] Reduce ignore list for apollo_tree --- apollo/publishing_tools/apollo_tree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apollo/publishing_tools/apollo_tree.py b/apollo/publishing_tools/apollo_tree.py index 165a564..5bde82d 100644 --- a/apollo/publishing_tools/apollo_tree.py +++ b/apollo/publishing_tools/apollo_tree.py @@ -274,7 +274,7 @@ async def run_apollo_tree( manual: bool, auto_scan: bool, path: str, - ignore: list, + ignore: list[str], product_name: str, ): if manual: @@ -374,7 +374,7 @@ if __name__ == "__main__": p_args.manual, p_args.auto_scan, p_args.path, - p_args.ignore, + [y for x in p_args.ignore for y in x], p_args.product_name, ) )