Skip to content

Commit

Permalink
Merge pull request #217 from civo/volty
Browse files Browse the repository at this point in the history
rm redundant print statement
  • Loading branch information
uzaxirr authored Oct 2, 2024
2 parents 7edb971 + 80d18b8 commit e04c310
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions volumetype.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package civogo

import (
"encoding/json"
"fmt"
)

// VolumeType represent the storage class related to a volume
Expand All @@ -22,7 +21,6 @@ func (c *Client) ListVolumeTypes() ([]VolumeType, error) {
}

volumeTypes := make([]VolumeType, 0)
fmt.Println(string(resp))
if err := json.Unmarshal(resp, &volumeTypes); err != nil {
return nil, err
}
Expand Down

0 comments on commit e04c310

Please sign in to comment.