Skip to content

Commit

Permalink
add tree output
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold committed Mar 13, 2024
1 parent e336ea1 commit fb522c2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions misc/style/check-parameter-order.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ 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)
print(tree.stdout)
args = parse_args()
errors = []
for cc_file in args.cc_file:
Expand Down

0 comments on commit fb522c2

Please sign in to comment.