Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 31, 2024
1 parent 4de6dc6 commit 39900e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/test_cli_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3498,7 +3498,9 @@ def test_default_config_option(pip_conf, runner, make_config_file, tmpdir_cwd):
def test_default_config_in_requirements_dir(
pip_conf, runner, make_config_file, tmpdir_cwd, config_file_name
):
make_config_file("dry-run", True, config_file_name=f"requirements/{config_file_name}")
make_config_file(
"dry-run", True, config_file_name=f"requirements/{config_file_name}"
)

req_dir = tmpdir_cwd / "requirements"
req_dir.mkdir(exist_ok=True, parents=True)
Expand Down
4 changes: 3 additions & 1 deletion tests/test_cli_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,9 @@ def test_default_config_option(run, runner, make_config_file, tmpdir_cwd):
def test_default_config_in_requirements_dir(
run, runner, make_config_file, tmpdir_cwd, config_file_name
):
make_config_file("dry-run", True, config_file_name=f"requirements/{config_file_name}")
make_config_file(
"dry-run", True, config_file_name=f"requirements/{config_file_name}"
)

req_dir = tmpdir_cwd / "requirements"
req_dir.mkdir(exist_ok=True, parents=True)
Expand Down

0 comments on commit 39900e4

Please sign in to comment.