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

Commit 4146099

Browse files
mvdanyml
authored andcommitted
Remove unnecessary underscore assignment
1 parent e758e0f commit 4146099

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

botbot.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func (bot *BotBot) recordUserCounts() {
161161

162162
for {
163163

164-
for ch, _ := range bot.users.Channels() {
164+
for ch := range bot.users.Channels() {
165165
bot.storage.SetCount(ch, bot.users.Count(ch))
166166
}
167167
time.Sleep(1 * time.Hour)

0 commit comments

Comments
 (0)