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:
belikor 2021-07-06 11:39:08 -05:00 committed by Lex Berezhny
parent 37a7345a90
commit 59d027ca02

View file

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