Skip to content

Commit

Permalink
add pwd output
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold committed Mar 13, 2024
1 parent e162e78 commit 6313754
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions misc/style/check-parameter-order.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def matching(opening, closing):
return (opening, closing) == ('(', ')') or (opening, closing) == ('[', ']')

def extract_feature_parameter_list(feature_name):
print(str(subprocess.run(["pwd"], stdout=subprocess.PIPE).stdout))
s = str(subprocess.run(["./../../builds/release/bin/downward", "--help", "--txt2tags", "{}".format(feature_name)], stdout=subprocess.PIPE).stdout)
position = s.find(feature_name + "(")
assert position != -1
Expand Down

0 comments on commit 6313754

Please sign in to comment.