From 7c1f6b6f983dd326754db2a7fbe7a1ea1fa870d8 Mon Sep 17 00:00:00 2001 From: Raul Marquez Date: Wed, 17 Jul 2024 10:30:04 -0700 Subject: [PATCH] Fix lint --- src/python_testing/TC_SC_4_3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python_testing/TC_SC_4_3.py b/src/python_testing/TC_SC_4_3.py index 6d6986faf82c86..ed5bab045d273e 100644 --- a/src/python_testing/TC_SC_4_3.py +++ b/src/python_testing/TC_SC_4_3.py @@ -320,7 +320,7 @@ async def test_TC_SC_4_3(self): # T TXT KEY if 'T' in operational_record.txt_record: - logging.info(f"T key is present in TXT record, verify if that it is a decimal value with no leading zeros and is less than or equal to 6. Convert the value to a bitmap and verify bit 0 is clear.") + logging.info("T key is present in TXT record, verify if that it is a decimal value with no leading zeros and is less than or equal to 6. Convert the value to a bitmap and verify bit 0 is clear.") t_value = operational_record.txt_record['T'] result, message = self.verify_t_value(t_value) asserts.assert_true(result, message)