Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
raul-marquez-csa committed Jul 17, 2024
1 parent d7c930b commit 7c1f6b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python_testing/TC_SC_4_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7c1f6b6

Please sign in to comment.