script/find_max_server: 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
37a7345a90
commit
59d027ca02
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ import time
|
|||
import asyncio
|
||||
import random
|
||||
from argparse import ArgumentParser
|
||||
from lbry.wallet.client.basenetwork import ClientSession
|
||||
from lbry.wallet.network import ClientSession
|
||||
|
||||
|
||||
class AgentSmith(ClientSession):
|
||||
|
|
Loading…
Reference in a new issue