fix: Change port to 8080 to avoid address in use error

This commit is contained in:
2025-10-31 10:10:13 +01:00
parent ade17801a0
commit 9498c2dcc2
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import http.server
import socketserver
import json
PORT = 8000
PORT = 8080
class SystemInfoHandler(http.server.SimpleHTTPRequestHandler):
def do_OPTIONS(self):