Skip to content

Commit

Permalink
Merge pull request #206 from HugoValente11/main
Browse files Browse the repository at this point in the history
Fix #227, Add input so users can specify the parameter description
  • Loading branch information
dzbaker committed Jan 12, 2023
2 parents 73935ac + 5bdb662 commit 00aadfb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Subsystems/cmdGui/CHeaderParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,9 +407,8 @@ def get_file_list(filename='CHeaderParser-hdr-paths.txt'):
# Get rid of any occurance of ';' (at the end of the line)
param_names.append(re.sub(';', '', line_split[1]))

# Not sure about why we are keeping track of this yet
# just fill it with null for now
param_desc.append('')
# Input to add param description
param_desc.append(input('Please enter parameter description: '))

# Determines data type for us to use
# returns null if no type could match
Expand Down

0 comments on commit 00aadfb

Please # to comment.