We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be6c5ca commit 86a883bCopy full SHA for 86a883b
src/catmux/session.py
@@ -29,6 +29,8 @@
29
30
31
def check_boolean_field(boolean):
32
+ if isinstance(boolean, bool):
33
+ return boolean
34
return boolean.lower() in ("yes", "true", "t", "1", True)
35
36
0 commit comments