Skip to content

Commit

Permalink
fix ruff error
Browse files Browse the repository at this point in the history
  • Loading branch information
svlandeg authored and gar1t committed Apr 30, 2024
1 parent a4e7460 commit 8d922f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_rich_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def main():
"""

result = runner.invoke(app, ["--help"])
lines = [l.strip() for l in result.stdout.split("\n")]
lines = [line.strip() for line in result.stdout.split("\n")]
help_start = lines.index("First line")
assert help_start != -1
assert lines[help_start : help_start + 6] == [
Expand Down

0 comments on commit 8d922f0

Please sign in to comment.