Give better name for class

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei 2024-06-28 17:51:58 +02:00
parent c5ff33cedf
commit 33dd293723
No known key found for this signature in database
GPG Key ID: 6310BD29B0BFF98C

View File

@ -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