From 7f2517f68a09885bd726daebaf9e5b7ab3d723e3 Mon Sep 17 00:00:00 2001 From: Liquid369 Date: Sat, 26 Oct 2024 09:24:34 -0500 Subject: [PATCH] Remove unused imports --- src/misc.py | 2 +- src/rpcClient.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/misc.py b/src/misc.py index 4a8a93b..cc1b983 100644 --- a/src/misc.py +++ b/src/misc.py @@ -11,7 +11,7 @@ from contextlib import redirect_stdout from ipaddress import ip_address from urllib.parse import urlparse -from typing import Any, Callable, Dict, Optional, Type, Tuple +from typing import Any, Callable, Dict, Optional, Tuple import simplejson as json from PyQt5.QtCore import QObject, pyqtSignal, QSettings diff --git a/src/rpcClient.py b/src/rpcClient.py index b1b91dd..11b8456 100644 --- a/src/rpcClient.py +++ b/src/rpcClient.py @@ -9,7 +9,7 @@ import http.client as httplib import ssl import threading -from typing import Union, Optional +from typing import Union from constants import DEFAULT_PROTOCOL_VERSION, MINIMUM_FEE from misc import getCallerName, getFunctionName, printException, printDbg, now, timeThis