Skip to content

Commit e459dce

Browse files
committed
remove on as confirmation option
1 parent 5d7ab71 commit e459dce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/spyglass/utils/dj_helper_fn.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -643,5 +643,4 @@ def str_to_bool(value) -> bool:
643643
# Adopted from github.com/PostHog/posthog/blob/master/posthog/utils.py
644644
if not value:
645645
return False
646-
return str(value).lower() in ("y", "yes", "t", "true", "on", "1")
647-
return str(value).lower() in ("y", "yes", "t", "true", "on", "1")
646+
return str(value).lower() in ("y", "yes", "t", "true", "1")

0 commit comments

Comments
 (0)