Google: remove unused & duplicated imports

"import json" was being done twice. cgi, time, and socket all appear to be unused.
This commit is contained in:
James Lu 2016-05-11 18:24:36 -07:00
parent 8b68261625
commit 88a8bbb4d8

View File

@ -30,10 +30,7 @@
import re
import sys
import cgi
import json
import time
import socket
import supybot.conf as conf
import supybot.utils as utils
@ -46,8 +43,6 @@ import supybot.callbacks as callbacks
from supybot.i18n import PluginInternationalization, internationalizeDocstring
_ = PluginInternationalization('Google')
import json
class Google(callbacks.PluginRegexp):
"""This is a simple plugin to provide access to the Google services we
all know and love from our favorite IRC bot."""