Fixed type warning

This commit is contained in:
jpk 2023-12-03 16:08:34 +01:00
parent 04c668b975
commit b3c4c2f63d
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ def list(ctx, sub_services):
def edit(ctx, service):
output.print_header(ctx, f"Editing {service}")
compose_file = get_compose_file(Path(CONFIG.root_directory) / service)
click.edit(filename=Path(compose_file))
click.edit(filename=str(compose_file))
@main.command(