We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c5a3bc commit 78451ecCopy full SHA for 78451ec
1 file changed
src/Mindee.Cli/Commands/PredictCommand.cs
@@ -55,13 +55,13 @@ public PredictCommand(CommandOptions options)
55
switch (options.Async)
56
{
57
case true when !options.Sync:
58
- {
59
- // Inject an "option" not changeable by the user.
60
- // This will set the `Handler.Async` property to always be `true`.
61
- var option = new Option<bool>("async", () => true) { IsHidden = true };
62
- AddOption(option);
63
- break;
64
- }
+ {
+ // Inject an "option" not changeable by the user.
+ // This will set the `Handler.Async` property to always be `true`.
+ var option = new Option<bool>("async", () => true) { IsHidden = true };
+ AddOption(option);
+ break;
+ }
65
case true when options.Sync:
66
AddOption(new Option<bool>(["--async"],
67
"Process the file asynchronously. False by default."));
0 commit comments