From 53c964c77eb98bf9405c143bfc6d7caab4c2cff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Mon, 5 Jun 2023 18:36:23 +0200 Subject: [PATCH] Minor documentation fix --- server/src/uds/core/ui/user_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/uds/core/ui/user_interface.py b/server/src/uds/core/ui/user_interface.py index 7b89486c0..f6d5a2b9a 100644 --- a/server/src/uds/core/ui/user_interface.py +++ b/server/src/uds/core/ui/user_interface.py @@ -256,7 +256,7 @@ class gui: def fromBool(bol: bool) -> str: """ Converts a boolean to the string representation. True is converted to - "true", False to "false". + "true", False to "false". (gui.TRUE and gui.FALSE are the same) Args: bol: Boolean value (True or false) to convert