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 Nov 24, 2023
1 parent ea53935 commit cf6e48a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions covalent/_programmatic/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@
app_log = logger.app_log


def _call_cli_command(
cmd: List[str],
*,
quiet: bool = False
) -> subprocess.CompletedProcess:
def _call_cli_command(cmd: List[str], *, quiet: bool = False) -> subprocess.CompletedProcess:
"""
Call a CLI command with the specified kwargs.
Expand Down
2 changes: 1 addition & 1 deletion tests/covalent_tests/programmatic/commands_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_is_covalent_running(mocker):
mocker.patch("psutil.pid_exists", return_value=True)
mocker.patch(
"covalent._shared_files.config.get_config",
return_value={"port": 48008, "host": "localhost"}
return_value={"port": 48008, "host": "localhost"},
)
assert ct.is_covalent_running()

Expand Down

0 comments on commit cf6e48a

Please sign in to comment.