3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

Remove unused imports

This commit is contained in:
James Lu 2015-08-30 12:53:30 -07:00
parent 94f83eb33b
commit d270a18285
6 changed files with 0 additions and 7 deletions

View File

@ -8,7 +8,6 @@ from collections import defaultdict
import hashlib
from log import log
import utils
from conf import conf
import world

View File

@ -11,7 +11,6 @@ world.testing = False
import conf
from log import log
import classes
import utils
import coreplugin
if __name__ == '__main__':

View File

@ -2,7 +2,6 @@
import unittest
import glob
import imp
import os
import sys

View File

@ -1,12 +1,10 @@
import sys
import os
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from log import log
import classes
import unittest
# Yes, we're going to even test the testing classes. Testception? I think so.
class TestFakeIRC(unittest.TestCase):
def setUp(self):
self.irc = classes.FakeIRC('unittest', classes.FakeProto())

View File

@ -2,7 +2,6 @@ import sys
import os
sys.path += [os.getcwd(), os.path.join(os.getcwd(), 'protocols')]
import unittest
from collections import defaultdict
import inspircd
import classes

View File

@ -4,7 +4,6 @@ cwd = os.getcwd()
sys.path += [cwd, os.path.join(cwd, 'plugins')]
import unittest
import utils
import classes
import relay