From 33dd293723a3598a3909deeef41456636b82f3a0 Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Fri, 28 Jun 2024 17:51:58 +0200 Subject: [PATCH] Give better name for class Signed-off-by: Gabor Mezei --- scripts/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/config.py b/scripts/config.py index 9335edaf8f..132b2d4479 100755 --- a/scripts/config.py +++ b/scripts/config.py @@ -637,7 +637,7 @@ class CryptoConfig(Config): def filename(self): return self.configfile.filename -class MultiConfig(Config): +class CombinedConfig(Config): """Representation of MbedTLS and PSA crypto configuration See the documentation of the `Config` class for methods to query @@ -803,7 +803,7 @@ if __name__ == '__main__': excluding X.509 and TLS.""") args = parser.parse_args() - config = MultiConfig(MbedTLSConfigFile(args.file), CryptoConfigFile(args.cryptofile)) + config = CombinedConfig(MbedTLSConfigFile(args.file), CryptoConfigFile(args.cryptofile)) if args.command is None: parser.print_help() return 1