Skip to content

Commit 088fea6

Browse files
author
Martin
committed
Comment fix
1 parent ae89722 commit 088fea6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_static/test_regex.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def is_match(s: str):
5050
# 5. Invalid Formats
5151
("42.5.1", False), # Multiple decimal separators (invalid)
5252
(".", False), # Only decimal separator (invalid)
53-
("1e", False), # Only scientific notation sign (invalid)
54-
("e", False), # Scientific notation without exponent (invalid)
53+
("e", False), # Only scientific notation sign (invalid)
54+
("1e", False), # Scientific notation without exponent (invalid)
5555
5656
# 6. Numbers with Commas (International)
5757
("1,000", True), # Number with commas as thousands separators

0 commit comments

Comments
 (0)