Fix format
This commit is contained in:
parent
73f9a153d7
commit
7f0e5cd46e
3 changed files with 6 additions and 6 deletions
|
@ -3,10 +3,10 @@ package model
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
"text/tabwriter"
|
"text/tabwriter"
|
||||||
"text/template"
|
"text/template"
|
||||||
"os"
|
|
||||||
|
|
||||||
"github.com/fatih/color"
|
"github.com/fatih/color"
|
||||||
)
|
)
|
||||||
|
|
|
@ -16,7 +16,7 @@ func (c *Campaign) PrintUserReport() {
|
||||||
user := ticket.GithubAssignee
|
user := ticket.GithubAssignee
|
||||||
if user != "" {
|
if user != "" {
|
||||||
if count, ok := userTickets[user]; ok {
|
if count, ok := userTickets[user]; ok {
|
||||||
userTickets[user] = count+1
|
userTickets[user] = count + 1
|
||||||
} else {
|
} else {
|
||||||
userTickets[user] = 1
|
userTickets[user] = 1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue