updates pydase.Client documentation and constructor arguments

This commit is contained in:
Mose Müller
2024-04-16 09:34:29 +02:00
parent 5eeaefdd63
commit 7b06786307
2 changed files with 24 additions and 10 deletions

View File

@ -39,7 +39,7 @@ def pydase_client() -> Generator[pydase.Client, None, Any]:
thread = threading.Thread(target=server.run, daemon=True)
thread.start()
client = pydase.Client(port=9999)
client = pydase.Client(hostname="localhost", port=9999)
yield client