From a0c76fe24f82cd3c66955cd75456df87e1a658d2 Mon Sep 17 00:00:00 2001 From: UpstreamData Date: Tue, 16 Jan 2024 15:36:55 -0700 Subject: [PATCH] refactor: remove unused imports. --- pyasic/rpc/cgminer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyasic/rpc/cgminer.py b/pyasic/rpc/cgminer.py index 83a853a2..a3cfc19f 100644 --- a/pyasic/rpc/cgminer.py +++ b/pyasic/rpc/cgminer.py @@ -13,10 +13,8 @@ # See the License for the specific language governing permissions and - # limitations under the License. - # ------------------------------------------------------------------------------ -import asyncio -import logging -from pyasic.rpc import APIError, BaseMinerRPCAPI +from pyasic.rpc import BaseMinerRPCAPI class CGMinerRPCAPI(BaseMinerRPCAPI):