Skip to content

Commit

Permalink
go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kobtea committed Jan 27, 2017
1 parent 83dd95f commit b8e6cfd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions todoist/label.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package todoist

import (
"context"
"errors"
"fmt"
"context"
"net/url"
"net/http"
"net/url"
)

type Label struct {
Expand All @@ -26,9 +26,9 @@ func (c *LabelClient) Add(label Label) (*Label, error) {
label.ID = GenerateTempID()
c.SyncState.Labels = append(c.SyncState.Labels, label)
command := Command{
Type: "label_add",
Args: label,
UUID: GenerateUUID(),
Type: "label_add",
Args: label,
UUID: GenerateUUID(),
TempID: label.ID,
}
c.queue = append(c.queue, command)
Expand Down

0 comments on commit b8e6cfd

Please sign in to comment.