Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien Geffroy authored and Joachim Jablon committed Jul 5, 2021
1 parent e81ee4c commit 13b5d3e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def test_env_file_format_error(cli_runner, vault_with_token, mocker, tmp_path):

vault_with_token.db = {"foo/bar": {"value": "yay"}}
result = cli_runner.invoke(
cli.cli, ["env", "--file", f"foo/bar", "--", "echo", "yay"]
cli.cli, ["env", "--file", "foo/bar", "--", "echo", "yay"]
)
assert result.exit_code != 0
assert "expects both a vault path and a filesystem path" in result.output
Expand Down
1 change: 0 additions & 1 deletion vault_cli/cli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import contextlib
import json
import logging
import os
import pathlib
Expand Down

0 comments on commit 13b5d3e

Please sign in to comment.