Skip to content

Commit 3e3d651

Browse files
Fix lint
1 parent 5d6912f commit 3e3d651

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/python_testing/TC_SC_4_3.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
import ipaddress
1919
import logging
20-
import re
2120

2221
import chip.clusters as Clusters
2322
from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main
@@ -93,7 +92,7 @@ def verify_decimal_value(input_value, max_value: int):
9392
if input_int <= max_value:
9493
return (True, f"Input ({input_value}) is valid.")
9594
else:
96-
return (False, f"Input ({input_value}) exceeds the allowed value {comparison_value}.")
95+
return (False, f"Input ({input_value}) exceeds the allowed value {max_value}.")
9796
except ValueError:
9897
return (False, f"Input ({input_value}) is not a valid decimal number.")
9998

0 commit comments

Comments
 (0)