From 178222c58c0f96c6ca76263196c3da438564036a Mon Sep 17 00:00:00 2001 From: Paolo Viotti Date: Wed, 1 Dec 2021 21:48:21 +0000 Subject: [PATCH] fix: remove mandatory cli parameters that prevented --version to work --- src/Degiro.Cli/Main.fs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Degiro.Cli/Main.fs b/src/Degiro.Cli/Main.fs index 9cdbdf1..529ca2b 100644 --- a/src/Degiro.Cli/Main.fs +++ b/src/Degiro.Cli/Main.fs @@ -19,8 +19,8 @@ let PROGRAM_NAME = AppDomain.CurrentDomain.FriendlyName type CliArguments = | [] Version - | [] CsvFilePath of input: string - | [] Year of year: int + | [] CsvFilePath of input: string + | [] Year of year: int | [] Period of period: int | [] OutputPath of output_path: string