Skip to content

Commit

Permalink
👹 Feed the hobgoblins (delint).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 28, 2024
1 parent 1612de6 commit 283e0d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
import sys
import fnmatch
import os

collect_ignore = ["setup.py"]

5 changes: 3 additions & 2 deletions irc/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
import argparse
import errno
import logging
import socket
import select
import re
import socketserver
Expand Down Expand Up @@ -440,7 +439,9 @@ def handle_dump(self, params):
print(" ", client.nick, client)

def handle_ison(self, params):
response = ':{} 303 {} :'.format(self.server.servername, self.client_ident().nick)
response = ':{} 303 {} :'.format(
self.server.servername, self.client_ident().nick
)
if len(params) == 0 or params.isspace():
response = ':{} 461 {} ISON :Not enough parameters'.format(
self.server.servername,
Expand Down
1 change: 0 additions & 1 deletion irc/tests/test_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from irc.bot import ServerSpec



class TestServerSpec:
def test_with_host(self):
server_spec = ServerSpec('irc.example.com')
Expand Down

0 comments on commit 283e0d3

Please sign in to comment.