flake8
Some checks failed
Lint Checks / Run linter (pull_request) Successful in 54s
Deploy Test / Run deploy test suite (pull_request) Failing after 4m19s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m31s
Smoke Test / Run basic test suite (pull_request) Successful in 5m20s

This commit is contained in:
Thomas E Lackey 2024-02-13 20:26:33 -06:00
parent 0d59c5d06e
commit 210ec4f1d9

View File

@ -427,7 +427,9 @@ def _check_volumes(spec):
if volume_path:
if not os.path.isabs(volume_path):
raise Exception(
f"Relative path {volume_path} for volume {volume_name} not supported for deployment type {spec.get_deployment_type()}")
f"Relative path {volume_path} for volume {volume_name} not "
f"supported for deployment type {spec.get_deployment_type()}"
)
@click.command()