Skip to content

Commit cb0398d

Browse files
committed
style: fix pep8 errors
1 parent efc6142 commit cb0398d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

deepaas/cmd/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def main():
403403

404404
LOG.info("[INFO, Output] Output is saved in {}".format(out_file))
405405
else:
406-
# Print output to stdout when no output file is specified
406+
# Print output to stdout when no output file is specified
407407
# Default to JSON output when no file is specified
408408
results_json = json.dumps(task)
409409
LOG.debug("[DEBUG, predict, Output]: {}".format(results_json))

deepaas/tests/test_cmd.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,4 @@ def test_doc_endpoint_disabled(monkeypatch, cfg_fixture, fastapi_app_fixture):
146146
run.main()
147147

148148
fastapi_app_fixture.assert_called_once()
149-
fastapi_app_fixture.assert_called_with(
150-
enable_doc=False, base_path=""
151-
)
149+
fastapi_app_fixture.assert_called_with(enable_doc=False, base_path="")

0 commit comments

Comments
 (0)