Skip to content

Commit dc25880

Browse files
committed
CLI, fix retry command
1 parent 05650cf commit dc25880

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

codeforces/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,10 @@ def test_cmd(problemset, letter, python):
7878
test(problemset, letter, python)
7979

8080

81-
@click.command("test")
81+
@click.command("retry")
8282
@click.argument("problemset")
8383
@click.argument("letter")
84+
@click.option("--python", is_flag=True, default=False, help="Look for Python executable instead of CPP")
8485
def retry_cmd(problemset, letter, python):
8586
build(problemset, letter)
8687
test(problemset, letter, python)

0 commit comments

Comments
 (0)