Skip to content

Commit

Permalink
Reword interface{} as any
Browse files Browse the repository at this point in the history
Should be fine since the module requires Go 1.21

Signed-off-by: Eric Chlebek <[email protected]>
  • Loading branch information
echlebek committed Dec 14, 2023
1 parent aef76f4 commit e6c3a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion add-check.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var SCAnalyzer = lint.InitializeAnalyzer(&lint.Analyzer{
var Analyzer = SCAnalyzer.Analyzer
func run(pass *analysis.Pass) (interface{}, error) {
func run(pass *analysis.Pass) (any, error) {
return nil, nil
}
`
Expand Down

0 comments on commit e6c3a2d

Please sign in to comment.