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 ```
This commit is contained in:
parent
59d027ca02
commit
8c79740ee8
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue