mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
protocols, core: remove unused imports
This commit is contained in:
parent
625e7b8aae
commit
4dd0709f66
@ -8,7 +8,6 @@ Here be dragons.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import threading
|
import threading
|
||||||
from random import randint
|
|
||||||
import time
|
import time
|
||||||
import socket
|
import socket
|
||||||
import ssl
|
import ssl
|
||||||
|
1
log.py
1
log.py
@ -8,7 +8,6 @@ access the global logger object by importing "log" from this module
|
|||||||
|
|
||||||
import logging
|
import logging
|
||||||
import logging.handlers
|
import logging.handlers
|
||||||
import sys
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from . import world, conf
|
from . import world, conf
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import time
|
import time
|
||||||
import string
|
|
||||||
import threading
|
import threading
|
||||||
|
|
||||||
from pylinkirc import utils, conf
|
from pylinkirc import utils, conf
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
import time
|
import time
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
import re
|
|
||||||
|
|
||||||
from pylinkirc import utils
|
from pylinkirc import utils
|
||||||
from pylinkirc.log import log
|
from pylinkirc.log import log
|
||||||
|
@ -3,9 +3,6 @@ inspircd.py: InspIRCd 2.x protocol module for PyLink.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import time
|
import time
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
import re
|
|
||||||
import threading
|
import threading
|
||||||
|
|
||||||
from pylinkirc import utils
|
from pylinkirc import utils
|
||||||
@ -774,7 +771,6 @@ class InspIRCdProtocol(TS6BaseProtocol):
|
|||||||
"""
|
"""
|
||||||
Stub VERSION handler (does nothing) to override the one in ts6_common.
|
Stub VERSION handler (does nothing) to override the one in ts6_common.
|
||||||
"""
|
"""
|
||||||
pass
|
|
||||||
|
|
||||||
def handle_kill(self, source, command, args):
|
def handle_kill(self, source, command, args):
|
||||||
"""Handles incoming KILLs."""
|
"""Handles incoming KILLs."""
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
import time
|
import time
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
import re
|
|
||||||
|
|
||||||
from pylinkirc import utils
|
from pylinkirc import utils
|
||||||
from pylinkirc.log import log
|
from pylinkirc.log import log
|
||||||
|
@ -3,8 +3,6 @@ ts6.py: PyLink protocol module for TS6-based IRCds (charybdis, elemental-ircd).
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import time
|
import time
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from pylinkirc import utils
|
from pylinkirc import utils
|
||||||
|
@ -3,8 +3,6 @@ unreal.py: UnrealIRCd 4.0 protocol module for PyLink.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import time
|
import time
|
||||||
import sys
|
|
||||||
import os
|
|
||||||
import codecs
|
import codecs
|
||||||
import socket
|
import socket
|
||||||
import re
|
import re
|
||||||
|
Loading…
Reference in New Issue
Block a user