Skip to content

Commit b330fa9

Browse files
committed
style(cli): remove redundant line breaks in command constructors
1 parent c234747 commit b330fa9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Proxxi.Cli/Commands/Fetch/FetchCommand.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ public sealed class FetchCommand(
1919
IPluginConfigProvider configProvider,
2020
IPluginLoader pluginLoader,
2121
IOptions<ProxxiPathsOptions> options
22-
)
23-
: AsyncCommand<FetchCommandSettings>
22+
) : AsyncCommand<FetchCommandSettings>
2423
{
2524
private readonly ProxxiPathsOptions _pathOptions = options.Value;
2625

src/Proxxi.Cli/Commands/Plugins/PluginsCommand.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ public sealed class PluginsCommand(
1212
IAnsiConsole console,
1313
IPluginConfigProvider configProvider,
1414
IOptions<ProxxiPathsOptions> options
15-
)
16-
: Command<PluginsCommand.PluginsCommandSettings>
15+
) : Command<PluginsCommand.PluginsCommandSettings>
1716
{
1817
public class PluginsCommandSettings : CommandSettings;
1918

0 commit comments

Comments
 (0)