Skip to content

Commit 11c5ba4

Browse files
committed
ci: fix more errors
1 parent a533d01 commit 11c5ba4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

integration/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package integration
22

33
import (
44
"encoding/json"
5-
"fmt"
5+
"errors"
66
"io/ioutil"
77
"log"
88
"os"

pkg/imp/github/issue.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package github
33
import (
44
"bytes"
55
"crypto/md5"
6-
"fmt"
76
"hash"
87
"io"
8+
"strconv"
99
"time"
1010

1111
"github.com/gofrs/uuid"
@@ -15,7 +15,6 @@ import (
1515
// IssueData is a compact way to represent an issue
1616
// so that templates can be expanded simply (without nested properties).
1717
type IssueData struct {
18-
1918
// internal properties
2019
uuidHash hash.Hash // to generate UUID's
2120
buf *bytes.Buffer // to expand templates into

taskset.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package dstask
33
// main task data structures
44

55
import (
6+
"errors"
67
"fmt"
78
"log"
89
"os"

0 commit comments

Comments
 (0)