Skip to content

Commit 9bc3332

Browse files
committed
make process_boolean_tag case insensitive
1 parent f839575 commit 9bc3332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/prompts_from_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def process_float_tag(tag):
3434

3535
def process_boolean_tag(tag):
3636
"""true|false"""
37-
return True if (tag == "true") else False
37+
return True if (tag.lower() == "true") else False
3838

3939

4040
prompt_tags = {

0 commit comments

Comments
 (0)