Skip to content

Commit

Permalink
Update test_valid_parentheses.py
Browse files Browse the repository at this point in the history
Wrong continued indentation (add 1 space).
  • Loading branch information
ikostan committed Nov 30, 2024
1 parent 18c197a commit 69f07a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kyu_7/valid_parentheses/test_valid_parentheses.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def test_valid_parentheses_large_invalid(self):
"<p>Invalid large test string</p>")
# pylint: enable=R0801
with (allure.step(f"Enter a large invalid test string and verify"

Check notice on line 154 in kyu_7/valid_parentheses/test_valid_parentheses.py

View check run for this annotation

codefactor.io / CodeFactor

kyu_7/valid_parentheses/test_valid_parentheses.py#L154

Using an f-string that does not have any interpolated variables (f-string-without-interpolation)

Check warning on line 154 in kyu_7/valid_parentheses/test_valid_parentheses.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

kyu_7/valid_parentheses/test_valid_parentheses.py#L154

Using an f-string that does not have any interpolated variables
f"that the function returns False.")):
f"that the function returns False.")):
test_str: str = (f'(((())(()()(()()))(())())(((()(()))))()(()()(('

Check notice on line 156 in kyu_7/valid_parentheses/test_valid_parentheses.py

View check run for this annotation

codefactor.io / CodeFactor

kyu_7/valid_parentheses/test_valid_parentheses.py#L156

Using an f-string that does not have any interpolated variables (f-string-without-interpolation)

Check warning on line 156 in kyu_7/valid_parentheses/test_valid_parentheses.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

kyu_7/valid_parentheses/test_valid_parentheses.py#L156

Using an f-string that does not have any interpolated variables
f'))))()()()(()())(()()(()()()(()()()((()())))))())()')
result: bool = valid_parentheses(test_str)
Expand Down

0 comments on commit 69f07a7

Please sign in to comment.