From 8c79740ee8792f525815cb225e56c37add124140 Mon Sep 17 00:00:00 2001 From: belikor Date: Tue, 6 Jul 2021 16:53:40 -0500 Subject: [PATCH] script/test_claim_search: fix the import of `ClientSession` This is nothing special, it just allows the module to run without throwing an error on the import. From ``` from lbry.wallet.client.basenetwork import ClientSession ``` To ``` from lbry.wallet.network import ClientSession ``` --- scripts/test_claim_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test_claim_search.py b/scripts/test_claim_search.py index 6c600bf4d..42554f740 100644 --- a/scripts/test_claim_search.py +++ b/scripts/test_claim_search.py @@ -1,5 +1,5 @@ import asyncio -from lbry.wallet.client.basenetwork import ClientSession +from lbry.wallet.network import ClientSession from lbry.wallet.rpc.jsonrpc import RPCError import logging import json