Skip to content

Commit

Permalink
fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sigurniv committed Apr 18, 2018
1 parent 5f938b2 commit 78f0828
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bot.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ func NewBot(pref Settings) (*Bot, error) {
}

bot := &Bot{
Token: pref.Token,
Updates: make(chan Update, pref.Updates),
Poller: pref.Poller,
Token: pref.Token,
Updates: make(chan Update, pref.Updates),
Poller: pref.Poller,

handlers: make(map[string]interface{}),
stop: make(chan struct{}),
reporter: pref.Reporter,
client:client,
client: client,
}

user, err := bot.getMe()
Expand Down

0 comments on commit 78f0828

Please sign in to comment.