From ab28e5beaa9fd564966e3f1a94e1693ee7f215ae Mon Sep 17 00:00:00 2001 From: bytedream Date: Mon, 1 Nov 2021 20:25:08 +0100 Subject: [PATCH] Removed unnecessary print --- utils/structure.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/utils/structure.go b/utils/structure.go index 54e0e1d..87928bf 100644 --- a/utils/structure.go +++ b/utils/structure.go @@ -2,7 +2,6 @@ package utils import ( "errors" - "fmt" "github.com/ByteDream/crunchyroll-go" "sync" ) @@ -505,8 +504,6 @@ func (es *EpisodeStructure) GetEpisodeByURL(url string) (*crunchyroll.Episode, e return nil, errors.New("invalid url") } - fmt.Println(title) - episodes, err := es.Episodes() if err != nil { return nil, err