Fix more lint errors

This commit is contained in:
David Boreham 2023-09-04 12:56:09 -06:00
parent c56560ce85
commit 3e1d98ab83
3 changed files with 6 additions and 6 deletions

View File

@ -141,7 +141,7 @@ def exec_operation(ctx, extra_args):
try:
ctx.obj.docker.compose.execute(service_name, command_to_exec, envs=container_exec_env)
except DockerException:
print(f"container command returned error exit status")
print("container command returned error exit status")
def logs_operation(ctx, tail: int, follow: bool, extra_args: str):

View File

@ -202,11 +202,11 @@ def _get_mapped_ports(stack: str, map_recipe: str):
return ports
@click.command()
@click.option("--output", required=True, help="Write yaml spec file here")
@click.option("--map-ports-to-host", required=False,
help="Map ports to the host as one of: any-variable-random (default), localhost-same, any-same, localhost-fixed-random, any-fixed-random")
help="Map ports to the host as one of: any-variable-random (default), "
"localhost-same, any-same, localhost-fixed-random, any-fixed-random")
@click.pass_context
def init(ctx, output, map_ports_to_host):
yaml = get_yaml()

View File

@ -118,7 +118,7 @@ def process_repo(verbose, quiet, dry_run, pull, check_only, git_ssh, dev_root_pa
origin = git_repo.remotes.origin
origin.pull(progress=None if quiet else GitProgress())
else:
print(f"skipping pull because this repo checked out a tag")
print("skipping pull because this repo checked out a tag")
else:
print("(git pull skipped)")
if not is_present: