From fcc8a28e7b5ddef038856eda1aae5c2876fe0a68 Mon Sep 17 00:00:00 2001 From: Law Zava Date: Thu, 29 Oct 2020 16:26:43 +0200 Subject: [PATCH] :art: update linting --- scraper/scrape.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scraper/scrape.go b/scraper/scrape.go index 181a891..60072a9 100644 --- a/scraper/scrape.go +++ b/scraper/scrape.go @@ -3,12 +3,13 @@ package scraper import ( "context" "fmt" - "github.com/chromedp/chromedp" - "github.com/gocolly/colly" - "github.com/gocolly/colly/debug" "net/url" "strings" "time" + + "github.com/chromedp/chromedp" + "github.com/gocolly/colly" + "github.com/gocolly/colly/debug" ) // Scrape is responsible for main scraping logic