Skip to content

Commit

Permalink
chore: Fix trailing comma (ruff 0.7.0)
Browse files Browse the repository at this point in the history
Fixed 1 error:
- tests/test_cli.py:
    1 × COM812 (missing-trailing-comma)
  • Loading branch information
tony committed Oct 19, 2024
1 parent d8e0302 commit 2c8a0d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,7 @@ def test_command_line(
captured = proc.stdout.read()

assert captured == get_output(
expect_cmd, shell=True, stderr=subprocess.STDOUT
expect_cmd,
shell=True,
stderr=subprocess.STDOUT,
)

0 comments on commit 2c8a0d1

Please sign in to comment.