Skip to content

Commit

Permalink
script/test_claim_search: fix the import of ClientSession
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
belikor authored and eukreign committed Jul 9, 2021
1 parent 59d027c commit 8c79740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test_claim_search.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 8c79740

Please sign in to comment.