From 8f0933ba680b9149a7c2f1b75db95c312c9bb625 Mon Sep 17 00:00:00 2001 From: Dpeta <69427753+Dpeta@users.noreply.github.com> Date: Thu, 9 Feb 2023 21:06:20 +0100 Subject: [PATCH] Autoflake irc.py --- irc.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/irc.py b/irc.py index 456d86e..16940f0 100644 --- a/irc.py +++ b/irc.py @@ -4,9 +4,7 @@ import random import time import ssl import sys -import select import datetime -import traceback try: from PyQt6 import QtCore, QtGui @@ -1055,7 +1053,7 @@ class PesterIRC(QtCore.QThread): "Failed to pass command, did the server pass an unsupported paramater? " + str(e) ) - except Exception as e: + except Exception: # logging.info("Failed to pass command, %s" % str(e)) PchumLog.exception("Failed to pass command")