Skip to content

Commit 78451ec

Browse files
fix lint
1 parent 4c5a3bc commit 78451ec

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/Mindee.Cli/Commands/PredictCommand.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ public PredictCommand(CommandOptions options)
5555
switch (options.Async)
5656
{
5757
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-
}
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+
}
6565
case true when options.Sync:
6666
AddOption(new Option<bool>(["--async"],
6767
"Process the file asynchronously. False by default."));

0 commit comments

Comments
 (0)