aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-346/mohammad-anwar/python/ch-1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-346/mohammad-anwar/python/ch-1.py b/challenge-346/mohammad-anwar/python/ch-1.py
index 9bdbf3be9e..f218c7b612 100644
--- a/challenge-346/mohammad-anwar/python/ch-1.py
+++ b/challenge-346/mohammad-anwar/python/ch-1.py
@@ -29,7 +29,7 @@ def test_examples():
result = valid_longest_parenthesis(example["str"])
expected = example["exp"]
assert result == expected, f"Failed for '{example['str']}': expected {expected}, got {result}"
- print(f"✓ '{example['str']}' -> {result}")
+ print(f"'{example['str']}' -> {result}")
if __name__ == "__main__":
test_examples()