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:
belikor 2021-07-06 16:53:40 -05:00 committed by Lex Berezhny
parent 59d027ca02
commit 8c79740ee8

View file

@ -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