From 6d69ee487d6de24cdb9582b0b827edf9e3343d01 Mon Sep 17 00:00:00 2001 From: Armin Sabouri Date: Mon, 16 Jun 2025 14:51:10 -0400 Subject: [PATCH] Remove unused imports in python int. tests --- .../python/test/test_payjoin_integration_test.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/payjoin-ffi/python/test/test_payjoin_integration_test.py b/payjoin-ffi/python/test/test_payjoin_integration_test.py index 90a56243c..0ec346738 100644 --- a/payjoin-ffi/python/test/test_payjoin_integration_test.py +++ b/payjoin-ffi/python/test/test_payjoin_integration_test.py @@ -1,5 +1,3 @@ -import base64 -from binascii import unhexlify import os import sys import httpx @@ -15,17 +13,11 @@ 0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "src")) ) -import hashlib import unittest from pprint import * from bitcoin import SelectParams -from bitcoin.core.script import ( - CScript, - OP_0, - SignatureHash, -) from bitcoin.wallet import * -from bitcoin.rpc import Proxy, hexlify_str, JSONRPCError +from bitcoin.rpc import Proxy SelectParams("regtest")