From 9377def636e4c78dc450933bc5a4aa8d2d58c8b4 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Sun, 26 Mar 2023 23:37:59 +0200 Subject: [PATCH] switch default port --- client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.py b/client.py index 3b6fc55..d39152e 100644 --- a/client.py +++ b/client.py @@ -4,7 +4,7 @@ import json class Client: - def __init__(self, host="127.0.0.1", port=8080): + def __init__(self, host="127.0.0.1", port=9090): self.host = host self.port = port self.session = requests.Session()