From 8b05a9173db51a3be11e6aed73d196753504506b Mon Sep 17 00:00:00 2001 From: mistangl Date: Thu, 21 Dec 2023 15:55:21 +0100 Subject: [PATCH] =?UTF-8?q?small=20BUGFIX:=20Einr=C3=BCckung=20war=20falsc?= =?UTF-8?q?h.=20Ansonsten=20wird=20es=20bei=20jedem=20Include=20als=20libr?= =?UTF-8?q?ary=20aufgerufen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/compare_lists.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/compare_lists.py b/lib/compare_lists.py index 74ec1eb..46425b2 100644 --- a/lib/compare_lists.py +++ b/lib/compare_lists.py @@ -243,11 +243,11 @@ if __name__ == '__main__': args = parser.parse_args() -if args.excel: - excel_comparison = Compare(args.number) - excel_comparison.create_excel_export() -elif args.tree: - treeview_comparison = Compare(args.number) - treeview_comparison.create_treeview() -else: - parser.print_help() \ No newline at end of file + if args.excel: + excel_comparison = Compare(args.number) + excel_comparison.create_excel_export() + elif args.tree: + treeview_comparison = Compare(args.number) + treeview_comparison.create_treeview() + else: + parser.print_help() \ No newline at end of file