Skip to content

Commit

Permalink
Fix up System.CommandLine signature after --use-cache MR
Browse files Browse the repository at this point in the history
  • Loading branch information
rgwood committed Dec 3, 2021
1 parent d1770a6 commit 68289cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RezoningScraper/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static async Task<int> Main(string[] args)
description: "Whether to save the API results to database.")
};

rootCommand.Handler = CommandHandler.Create<string, bool>(RunScraper);
rootCommand.Handler = CommandHandler.Create<string, bool, bool>(RunScraper);
return await rootCommand.InvokeAsync(args);
}

Expand Down

0 comments on commit 68289cc

Please sign in to comment.