Skip to content

Commit 9b35d1a

Browse files
committed
fix: linter errors cmd/app/unlink.go
1 parent 71aed03 commit 9b35d1a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

cmd/app/unlink.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,20 @@ var unlinkAppSelectPromptFunc = prompts.AppSelectPrompt
3434
// NewUnlinkCommand returns a new Cobra command for unlinking apps
3535
func NewUnlinkCommand(clients *shared.ClientFactory) *cobra.Command {
3636
cmd := &cobra.Command{
37-
Use: "unlink",
38-
Short: "Remove linked app from the project",
39-
Long: "Unlink a previously linked app from the project",
37+
Use: "unlink",
38+
Short: "Remove linked app from the project",
39+
Long: "Unlink a previously linked app from the project",
4040
Example: style.ExampleCommandsf([]style.ExampleCommand{
4141
{
4242
Meaning: "Remove an existing app from the project",
43-
Command: "app unlink",
43+
Command: "app unlink",
4444
},
4545
{
4646
Meaning: "Remove a specific app without using prompts",
4747
Command: "app unlink --team T0123456789 --app A0123456789 --environment deployed",
48-
4948
},
5049
}),
51-
50+
5251
PreRunE: func(cmd *cobra.Command, args []string) error {
5352
clients.Config.SetFlags(cmd)
5453
return cmdutil.IsValidProjectDirectory(clients)

0 commit comments

Comments
 (0)