Teng Zhang

Results 1 comments of Teng Zhang

A possible workaround is to start a [debugpy](https://github.com/microsoft/debugpy) adapter before the initialization of the server and clients: ```py debugpy.listen(("localhost", args.tmp_dbg_port)) if args.role == "client": start_client(...) else: start_server(...) ```