Skip to content

Commit e7a7b3b

Browse files
committed
Please the linter
1 parent df1f8fe commit e7a7b3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/devices/retrieve.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (c *Client) Retrieve() *cobra.Command {
5959
if deviceID != "" {
6060
device, _, err := c.Service.FindDeviceById(context.Background(), deviceID).Include(c.Servicer.Includes(nil)).Exclude(c.Servicer.Excludes(nil)).Execute()
6161
if err != nil {
62-
return fmt.Errorf("Could not get Devices: %w", err)
62+
return fmt.Errorf("could not get Devices: %w", err)
6363
}
6464
devices = append(devices, *device)
6565
} else {
@@ -91,7 +91,7 @@ func (c *Client) Retrieve() *cobra.Command {
9191

9292
resp, err := request.ExecuteWithPagination()
9393
if err != nil {
94-
return fmt.Errorf("Could not list Devices: %w", err)
94+
return fmt.Errorf("could not list Devices: %w", err)
9595
}
9696
devices = append(devices, resp.Devices...)
9797
}

0 commit comments

Comments
 (0)