From b553bef0268d84c2455007edcd7f071c64233f10 Mon Sep 17 00:00:00 2001 From: Sourcery AI <> Date: Mon, 3 Jul 2023 16:36:42 +0000 Subject: [PATCH] 'Refactored by Sourcery' --- tnc/mesh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tnc/mesh.py b/tnc/mesh.py index a0745594..8da7e786 100644 --- a/tnc/mesh.py +++ b/tnc/mesh.py @@ -132,7 +132,7 @@ class MeshRouter(): # add new routing entry if not exists if new_router not in MeshParam.routing_table: #print(f"INSERT {new_router} >>> ROUTING TABLE") - self.log.info(f"[MESH] [ROUTING TABLE] [INSERT]:", insert=new_router) + self.log.info("[MESH] [ROUTING TABLE] [INSERT]:", insert=new_router) MeshParam.routing_table.append(new_router) except Exception as e: @@ -456,7 +456,7 @@ class MeshRouter(): # add new routing entry if not exists if new_entry not in MESH_SIGNALLING_TABLE: #print(f"INSERT {new_entry} >>> SIGNALLING TABLE") - self.log.info(f"[MESH] [SIGNALLING TABLE] [INSERT]:", insert=new_entry) + self.log.info("[MESH] [SIGNALLING TABLE] [INSERT]:", insert=new_entry) MESH_SIGNALLING_TABLE.append(new_entry)