From 68289cc6541e6287a5bd18127077c0fc787fd891 Mon Sep 17 00:00:00 2001 From: Reilly Wood Date: Thu, 2 Dec 2021 18:30:40 -0800 Subject: [PATCH] Fix up System.CommandLine signature after --use-cache MR --- RezoningScraper/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RezoningScraper/Program.cs b/RezoningScraper/Program.cs index 29cfc6e..fb86c67 100644 --- a/RezoningScraper/Program.cs +++ b/RezoningScraper/Program.cs @@ -25,7 +25,7 @@ static async Task Main(string[] args) description: "Whether to save the API results to database.") }; - rootCommand.Handler = CommandHandler.Create(RunScraper); + rootCommand.Handler = CommandHandler.Create(RunScraper); return await rootCommand.InvokeAsync(args); }