Skip to content

Commit

Permalink
Remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
craddm committed Nov 8, 2024
1 parent 1d75272 commit 8b9145d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions data_safe_haven/commands/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,12 @@ def available() -> None:

@config_command_group.command()
def show(
name: Annotated[str, typer.Argument(help="Name of SRE to show",
callback=validators.typer_safe_string)],
name: Annotated[
str,
typer.Argument(
help="Name of SRE to show", callback=validators.typer_safe_string
),
],
file: Annotated[
Optional[Path], # noqa: UP007
typer.Option(help="File path to write configuration template to."),
Expand Down Expand Up @@ -201,7 +205,6 @@ def upload(
logger.error("Check for missing or incorrect fields in the configuration.")
raise typer.Exit(1) from exc

print(config.filename)
# Present diff to user
if (not force) and SREConfig.remote_exists(context, filename=config.filename):
try:
Expand Down

0 comments on commit 8b9145d

Please sign in to comment.