Skip to content
This repository has been archived by the owner on Nov 26, 2018. It is now read-only.

Commit

Permalink
Remove unnecessary underscore assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdan authored and yml committed Apr 9, 2015
1 parent e758e0f commit 4146099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion botbot.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (bot *BotBot) recordUserCounts() {

for {

for ch, _ := range bot.users.Channels() {
for ch := range bot.users.Channels() {
bot.storage.SetCount(ch, bot.users.Count(ch))
}
time.Sleep(1 * time.Hour)
Expand Down

0 comments on commit 4146099

Please sign in to comment.