Skip to content

Commit

Permalink
Remove unnecessary tuple parens
Browse files Browse the repository at this point in the history
  • Loading branch information
joelostblom committed Sep 28, 2023
1 parent cb8a86a commit b258869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion otter/test_files/ok_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def run_doctest(name, doctest_string, global_environment):
result = doctestrunner.summarize(verbose=True)
# An individual test can only pass or fail
if result.failed == 0:
return (True, '')
return True, ''
else:
from ..assign.assignment import Assignment
if Assignment().traceback_length == 'full':
Expand Down

0 comments on commit b258869

Please sign in to comment.