Skip to content

Commit e6f7701

Browse files
committed
Fix lint
1 parent 2a5f63c commit e6f7701

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module puffin
22

33
go 1.21
44

5-
toolchain go1.21.8
6-
75
require (
86
github.com/charmbracelet/bubbles v0.16.1
97
github.com/charmbracelet/bubbletea v0.26.4

ui/main_view.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111

1212
type mainView struct {
1313
id int
14-
ready bool
1514
isDataReady bool
1615
name string
1716

ui/table_graph.go

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@ type TableGraph struct {
1717
tableSize size
1818
viewportSize size
1919

20-
name string
21-
table *Table
22-
viewport viewport.Model
23-
id int
24-
locked bool
25-
cmd func(int, hledger.Options) content
26-
showGraph bool
27-
cmdType cmdType
28-
dataTransformers []dataTransformer
20+
name string
21+
table *Table
22+
viewport viewport.Model
23+
id int
24+
locked bool
25+
cmd func(int, hledger.Options) content
26+
showGraph bool
27+
cmdType cmdType
2928
}
3029

3130
func newTableGraph(id int, name string, locked bool, cmd func(int, hledger.Options) content, cmdType cmdType, dataTransformers []dataTransformer) *TableGraph {

0 commit comments

Comments
 (0)