diff options
author | kotfu <kotfu@kotfu.net> | 2022-11-05 20:28:21 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2022-11-05 20:28:21 -0600 |
commit | eff9274456528a96c4e492ce8499916e6594348a (patch) | |
tree | 35059353cc7003fb84ea291f385173f064923e92 | |
parent | 5a6df16b2d6cad842a87f055ff688f818571132b (diff) | |
download | cmd2-git-eff9274456528a96c4e492ce8499916e6594348a.tar.gz |
Fix black errors
-rw-r--r-- | cmd2/utils.py | 2 |
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() |