We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1909641 commit 6a051ceCopy full SHA for 6a051ce
ctfcli/cli/challenges.py
@@ -816,7 +816,7 @@ def deploy(
816
click.secho("Success!\n", fg="green")
817
818
if len(skipped_deployments) > 0:
819
- click.secho("Deployment skipped (no image specified) for:",fg="yellow")
+ click.secho("Deployment skipped (no image specified) for:", fg="yellow")
820
for challenge_instance in skipped_deployments:
821
click.echo(f" - {challenge_instance}")
822
ctfcli/core/image.py
@@ -4,6 +4,7 @@
4
from os import PathLike
5
from pathlib import Path
6
from typing import Optional, Union
7
+
8
from ctfcli.core.exceptions import InvalidComposeOperation
9
10
0 commit comments