From f654e78ed584a5bed30727452f71977a129f62b6 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Mon, 16 Jan 2023 18:00:24 +0000 Subject: [PATCH] Fix pylint warning --- vppcfg/vpp/vppapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vppcfg/vpp/vppapi.py b/vppcfg/vpp/vppapi.py index 57fa7af..3071841 100644 --- a/vppcfg/vpp/vppapi.py +++ b/vppcfg/vpp/vppapi.py @@ -218,7 +218,7 @@ class VPPApi: enumerating the 'interfaces' scope from yaml_config""" if not "interfaces" in yaml_config: - self.logger.error(f"YAML config does not contain any interfaces") + self.logger.error("YAML config does not contain any interfaces") return False self.logger.debug(f"config: {yaml_config['interfaces']}")