Skip to content

Commit

Permalink
pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Oct 22, 2024
1 parent 1c8fd0f commit 048169e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/datadogV2/model_sensitive_data_scanner_meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type SensitiveDataScannerMeta struct {
// will change when the set of required properties is changed.
func NewSensitiveDataScannerMeta() *SensitiveDataScannerMeta {
this := SensitiveDataScannerMeta{}
var hasHighlightEnabled = true
var hasHighlightEnabled bool = true
this.HasHighlightEnabled = &hasHighlightEnabled
return &this
}
Expand All @@ -45,7 +45,7 @@ func NewSensitiveDataScannerMeta() *SensitiveDataScannerMeta {
// but it doesn't guarantee that properties required by API are set.
func NewSensitiveDataScannerMetaWithDefaults() *SensitiveDataScannerMeta {
this := SensitiveDataScannerMeta{}
var hasHighlightEnabled = true
var hasHighlightEnabled bool = true
this.HasHighlightEnabled = &hasHighlightEnabled
return &this
}
Expand Down

0 comments on commit 048169e

Please sign in to comment.