summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2022-11-05 20:28:21 -0600
committerkotfu <kotfu@kotfu.net>2022-11-05 20:28:21 -0600
commiteff9274456528a96c4e492ce8499916e6594348a (patch)
tree35059353cc7003fb84ea291f385173f064923e92
parent5a6df16b2d6cad842a87f055ff688f818571132b (diff)
downloadcmd2-git-eff9274456528a96c4e492ce8499916e6594348a.tar.gz
Fix black errors
-rw-r--r--cmd2/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/utils.py b/cmd2/utils.py
index d1edfce9..f5b91b99 100644
--- a/cmd2/utils.py
+++ b/cmd2/utils.py
@@ -91,7 +91,7 @@ def strip_quotes(arg: str) -> str:
def to_bool(val: Any) -> bool:
"""Converts anything to a boolean based on its value.
-
+
Strings like "True", "true", "False", and "false" return True, True, False, and False
respectively. All other values are converted using bool()