Skip to content

Commit

Permalink
fixup flatten
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlong13 authored and loki077 committed Jun 14, 2024
1 parent 357fa0f commit 5ed191e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/Carbonix_scripts/param_auto_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
return_status = 1
elif param_type == 'values':
# Check if the parameter value is in the list of values
if param_value not in param_values:
if param_value not in [str(p) for p in param_values]:
print(
f"Parameter '{param_name}' "
f"has an invalid value: {param_value} "
Expand Down

0 comments on commit 5ed191e

Please sign in to comment.