Skip to content

Commit 57b6cf4

Browse files
committed
comment
1 parent aab2a76 commit 57b6cf4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/firebolt_db/firebolt_dialect.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ def strtobool(val: str) -> int:
8787
Convert a string representation of truth to true (1) or false (0).
8888
8989
True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
90-
are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if
90+
are 'n', 'no', 'f', 'false', 'off', and '0'. Values are compared
91+
case-insensitively. Raises ValueError if
9192
'val' is anything else.
9293
"""
9394
val = val.lower()

0 commit comments

Comments
 (0)