From b911fd679d7aeed088c762bd2053e2091168df26 Mon Sep 17 00:00:00 2001 From: Josh Ott Date: Tue, 6 Aug 2024 18:13:43 +0200 Subject: [PATCH] Make arguments non-positional Co-authored-by: Mateusz Jakub Fila <37295697+m-fila@users.noreply.github.com> --- bin/schedule.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/schedule.jl b/bin/schedule.jl index b000277..7c538ba 100644 --- a/bin/schedule.jl +++ b/bin/schedule.jl @@ -14,12 +14,12 @@ function parse_args() arg_type = String required = true - "event-count" + "--event-count" help = "Number of events to be processed" arg_type = Int default = 1 - "max-concurrent" + "--max-concurrent" help = "Number of slots for graphs to be scheduled concurrently" arg_type = Int default = 3