summary refs log tree commit diff
path: root/client.py
diff options
context:
space:
mode:
authorMatt Arnold2025-02-22 00:46:07 -0500
committerMatt Arnold2025-02-22 00:46:07 -0500
commite8e53da972309e5ace11bd2a46ba5401593a9c2a (patch)
treeba5500b386ffc082dd3d97c42cc2e1bae2fb1e8c /client.py
parentf2f74a152109f5b6c90cb8dd832c79b21c306b85 (diff)
change readme, and play Fetch with Ruff Ruffmen
Diffstat (limited to 'client.py')
-rw-r--r--client.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/client.py b/client.py
index d1e7474..c70317c 100644
--- a/client.py
+++ b/client.py
@@ -1,12 +1,10 @@
 # Part of rabbitears See LICENSE for permissions
 # Copyright (C) 2022 Matt Arnold
 from IRC import IRCBot, IRCError, printred
-import os
 import random
 import ssl
 import socket
 import sys
-import irctokens
 import json
 import re
 
@@ -22,7 +20,7 @@ with open("config.json") as f:
 
 # Need to pass the IRCBot class a socket the reason it doesn't do this itself is
 # so you can set up TLS or not as you need it
-# These provide good defaults. But your milage may vary
+# These provide good defaults. But your mileage may vary
 oursock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
 context = ssl.SSLContext()
 context.check_hostname = False