1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

Improve tests/scripts/depends.py code

As suggested by gilles-peskine-arm.

Co-authored-by: Gilles Peskine <gilles.peskine@arm.com>
Signed-off-by: Andrzej Kurek <andrzej.kurek@arm.com>
This commit is contained in:
Andrzej Kurek
2023-02-06 10:48:43 +01:00
parent 2432dc212e
commit 3ebe7d6260

View File

@@ -126,9 +126,7 @@ Remove the backup file if it was saved earlier."""
shutil.copy(options.config_backup, options.config) shutil.copy(options.config_backup, options.config)
def option_exists(conf, option): def option_exists(conf, option):
if option not in conf.settings: return option in conf.settings
return False
return True
def set_config_option_value(conf, option, colors, value: Union[bool, str]): def set_config_option_value(conf, option, colors, value: Union[bool, str]):
"""Set/unset a configuration option, optionally specifying a value. """Set/unset a configuration option, optionally specifying a value.