From 059799bb2d3ed2c42de77cbf6a453dff382b2309 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Wed, 6 Jul 2016 09:49:40 +0200 Subject: Remove some unused things --- plugins/random_nick.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/random_nick.py') diff --git a/plugins/random_nick.py b/plugins/random_nick.py index 2c2852dc..66d5661f 100644 --- a/plugins/random_nick.py +++ b/plugins/random_nick.py @@ -30,6 +30,6 @@ c = ["b", "c", "d", "f", "g", "h", "j", "k", "m", "l", "n", "p", "r", "s", "t", def gen_nick(size): res = '' - for i in range(size): + for _ in range(size): res += '%s%s' % (choice(c), choice(s)) return res -- cgit v1.2.3