lint cleanups

This commit is contained in:
Brian S. Stephan 2021-04-24 19:21:56 -05:00
parent d518cb2b77
commit 44d8b7db00
1 changed files with 0 additions and 3 deletions

View File

@ -1,5 +1,4 @@
"""Start the IRC bot via Django management command."""
import logging
import signal
@ -7,7 +6,6 @@ from django.core.management import BaseCommand
from ircbot.bot import IRCBot
log = logging.getLogger('ircbot')
@ -21,7 +19,6 @@ class Command(BaseCommand):
def handle(self, *args, **options):
"""Start the IRC bot and spin forever."""
irc = IRCBot()
signal.signal(signal.SIGINT, irc.sigint_handler)
irc.start()