Skip to content

Commit 56c1194

Browse files
fix linter
Signed-off-by: Thomas Poignant <[email protected]>
1 parent e4ca4b3 commit 56c1194

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

exporter/feature_event.go

-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ func (f FeatureEvent) FormatInCSV(csvTemplate *template.Template) ([]byte, error
114114
return nil, err
115115
}
116116
return buf.Bytes(), nil
117-
118117
}
119118

120119
func (f FeatureEvent) FormatInJSON() ([]byte, error) {

testutils/exporter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func (e ExportableMockEvent) GetCreationDate() int64 {
2222
return 0
2323
}
2424

25-
func (e ExportableMockEvent) FormatInCSV(csvTemplate *template.Template) ([]byte, error) {
25+
func (e ExportableMockEvent) FormatInCSV(_ *template.Template) ([]byte, error) {
2626
return []byte(e.name), nil
2727
}
2828

0 commit comments

Comments
 (0)