We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10cfca7 commit 0e6180dCopy full SHA for 0e6180d
examples/httpserver_multiple_servers.py
@@ -42,11 +42,11 @@ def home(request: Request):
42
return Response(request, "Hello from home!")
43
44
45
-id_address = str(wifi.radio.ipv4_address)
+ip_address = str(wifi.radio.ipv4_address)
46
47
# Start the servers.
48
-bedroom_server.start(id_address, 5000)
49
-office_server.start(id_address, 8000)
+bedroom_server.start(ip_address, 5000)
+office_server.start(ip_address, 8000)
50
51
while True:
52
try:
0 commit comments