Skip to content

Commit a1e48c5

Browse files
committed
fixed formatting
1 parent 0cc49be commit a1e48c5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,9 @@ def test_run_subcommand_with_help_uses_subcommand_help(cli, dotenv_path):
257257
output = sh.dotenv("--file", dotenv_path, "run", "printenv", "--help")
258258

259259
assert "dotenv run" not in output
260-
expected_help_output = subprocess.check_output(["printenv", "--help"]).decode("utf-8")
260+
expected_help_output = subprocess.check_output(["printenv", "--help"]).decode(
261+
"utf-8"
262+
)
261263
assert output == expected_help_output
262264

263265

0 commit comments

Comments
 (0)