From 6ad0e773de4bafa489da4587e6829dc3cf67b413 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 21 Mar 2024 16:28:49 -0400 Subject: [PATCH] Actually have the vformat override return Performing the super() is hardly helpful if it doesn't actually copy the return behavior. --- confluent_server/confluent/config/configmanager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/confluent_server/confluent/config/configmanager.py b/confluent_server/confluent/config/configmanager.py index dce692fd..9e7818b5 100644 --- a/confluent_server/confluent/config/configmanager.py +++ b/confluent_server/confluent/config/configmanager.py @@ -1091,8 +1091,8 @@ class _ExpressionFormat(string.Formatter): def _vformat(self, format_string, args, kwargs, used_args, recursion_depth, auto_arg_index=False): - super()._vformat(format_string, args, kwargs, used_args, - recursion_depth, auto_arg_index) + return super()._vformat(format_string, args, kwargs, used_args, + recursion_depth, auto_arg_index) def get_field(self, field_name, args, kwargs): return field_name, field_name