Skip to content

Commit f5ea206

Browse files
committed
fix linter issues
1 parent 163872a commit f5ea206

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/cmd/beta/server/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
8585
`$ stackit beta server create --machine-type t1.1 --name server1 --boot-volume-source-id xxx --boot-volume-source-type image --boot-volume-size 64`,
8686
),
8787
),
88-
RunE: func(cmd *cobra.Command, args []string) error {
88+
RunE: func(cmd *cobra.Command, _ []string) error {
8989
ctx := context.Background()
9090
model, err := parseInput(p, cmd)
9191
if err != nil {

internal/cmd/beta/server/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
5555
"$ stackit beta server list --limit 10",
5656
),
5757
),
58-
RunE: func(cmd *cobra.Command, args []string) error {
58+
RunE: func(cmd *cobra.Command, _ []string) error {
5959
ctx := context.Background()
6060
model, err := parseInput(p, cmd)
6161
if err != nil {

0 commit comments

Comments
 (0)