Skip to content

Commit 4bc65e7

Browse files
committed
Appease pylint
Fix f-string-without-interpolation error.
1 parent 8a0ad7d commit 4bc65e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/module_utils/fabric/fabric_details_v2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def per_vrf_loopback_auto_provision(self):
382382
try:
383383
return self._get_nv_pair("PER_VRF_LOOPBACK_AUTO_PROVISION")
384384
except ValueError as error:
385-
msg = f"Failed to retrieve per_vrf_loopback_auto_provision: "
385+
msg = "Failed to retrieve per_vrf_loopback_auto_provision: "
386386
msg += f"Error detail: {error}"
387387
self.log.debug(msg)
388388
return None

0 commit comments

Comments
 (0)