From c5c7932d7fe73ead21069a4f0fd774f263499a73 Mon Sep 17 00:00:00 2001 From: Nightriff <66378309+Nightriff@users.noreply.github.com> Date: Tue, 5 Sep 2023 12:37:34 -0700 Subject: [PATCH] Use less common port to avoid port conflicts (#16) --- lib/oauth2_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oauth2_client.py b/lib/oauth2_client.py index aee3d2e..247dfd4 100644 --- a/lib/oauth2_client.py +++ b/lib/oauth2_client.py @@ -72,7 +72,7 @@ from time import time -PORT = 8080 +PORT = 8181 HOST = "localhost" RESPONSE_TYPE = "code" CODE_CHALLENGE_METHOD = "S256"