Skip to content

Commit

Permalink
chore: 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 24, 2023
1 parent 2e49edd commit f109077
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansible_compat/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def install_requirements( # noqa: C901
f"{requirement}",
]
if self.verbosity > 0:
cmd.extend(["-"+ ("v" * self.verbosity)])
cmd.extend(["-" + ("v" * self.verbosity)])
if self.cache_dir:
cmd.extend(["--roles-path", f"{self.cache_dir}/roles"])

Expand All @@ -476,7 +476,7 @@ def install_requirements( # noqa: C901
"install",
]
if self.verbosity > 0:
cmd.extend(["-"+ ("v" * self.verbosity)])
cmd.extend(["-" + ("v" * self.verbosity)])
if offline:
_logger.warning(
"Skipped installing collection dependencies due to running in offline mode.",
Expand Down

0 comments on commit f109077

Please sign in to comment.