From f6659688779baa495e966841a986bbdfa4e84a45 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Wed, 28 Aug 2024 16:06:51 -0700 Subject: [PATCH] A questionable python code change --- logger/cli/__main__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/logger/cli/__main__.py b/logger/cli/__main__.py index ede2f412..3048a9bf 100644 --- a/logger/cli/__main__.py +++ b/logger/cli/__main__.py @@ -1,4 +1,5 @@ import requests +import pathlib -r = requests.get("http://localhost:8081") +r = requests.get("http://localhost:{".format(8081)) print(r.json())