From 4da75dbfa4831f5e7b85bd3d90f08cc6860a427a Mon Sep 17 00:00:00 2001 From: Simon Dold Date: Wed, 13 Mar 2024 18:28:51 +0100 Subject: [PATCH] update tree --- misc/style/check-parameter-order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/style/check-parameter-order.py b/misc/style/check-parameter-order.py index 056ced1815..ccf287c5be 100755 --- a/misc/style/check-parameter-order.py +++ b/misc/style/check-parameter-order.py @@ -176,7 +176,7 @@ def compare_component_parameters(cc_file, args): def main(): print(str(subprocess.run(["pwd"], stdout=subprocess.PIPE).stdout)) # print(str(subprocess.run(["tree", "-L", "3"], stdout=subprocess.PIPE).stdout)) - tree = subprocess.run(["tree", "../../..", "-L", "4"], stdout=subprocess.PIPE, text=True) + tree = subprocess.run(["tree", "../../../..", "-L", "4"], stdout=subprocess.PIPE, text=True) print(tree.stdout) args = parse_args() errors = []