1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Fix errors found by staticcheck

Signed-off-by: Chris Cummer <chriscummer@me.com>
This commit is contained in:
Chris Cummer
2020-05-06 22:52:09 -07:00
parent 10a8d27462
commit d45c02251d
3 changed files with 6 additions and 24 deletions

View File

@@ -2,17 +2,17 @@ package spacex
import (
"fmt"
"time"
"github.com/rivo/tview"
"github.com/wtfutil/wtf/view"
"github.com/wtfutil/wtf/wtf"
"time"
)
type Widget struct {
view.TextWidget
settings *Settings
err error
launch Launch
}
func NewWidget(app *tview.Application, settings *Settings) *Widget {