From c8c1c694898a3a5e9c3262f92fe5483245cfae48 Mon Sep 17 00:00:00 2001 From: Chris Redford Date: Thu, 21 May 2020 14:39:39 -0700 Subject: [PATCH] explicit ignore --- agent/agent.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/agent.go b/agent/agent.go index 2de647c..073eba9 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -77,14 +77,14 @@ func (t *Timer) Start(d time.Duration) { almostDur := time.Duration(almostSec) * time.Second <-AfterWallClock(almostDur) message := Sprintf("%v left", t.left) - notify.Push( + _ = notify.Push( "", message, "", notificator.UR_CRITICAL) }() } // set and execute notify go func() { <-AfterWallClock(t.duration) - notify.Push( + _ = notify.Push( "", "Finished", "", notificator.UR_CRITICAL) }() }