Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jooola committed Aug 29, 2024
1 parent 02a36d9 commit 1ff0915
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hcloud/schema_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -658,8 +658,8 @@ func imagePricingFromSchema(s schema.Pricing) ImagePricing {
func floatingIPPricingFromSchema(s schema.Pricing) FloatingIPPricing {
return FloatingIPPricing{
Monthly: Price{
Net: s.FloatingIP.PriceMonthly.Net,
Gross: s.FloatingIP.PriceMonthly.Gross,
Net: s.FloatingIP.PriceMonthly.Net, // nolint:staticcheck // Field is deprecated, but not removed
Gross: s.FloatingIP.PriceMonthly.Gross, // nolint:staticcheck // Field is deprecated, but not removed
Currency: s.Currency,
VATRate: s.VATRate,
},
Expand Down

0 comments on commit 1ff0915

Please sign in to comment.