Commit 3c09df4d authored by Lukas Eller's avatar Lukas Eller

verbose fixed

parent faf3f3f5
......@@ -118,6 +118,8 @@ def rtr_overview(
with requests.Session() as session:
# Initial Request
response = session.get(url, params=request_params_list)
if verbose:
print(f"Requesting URL: {response.request.url}")
response_json = response.json()
tests = response_json["results"]
......@@ -132,8 +134,6 @@ def rtr_overview(
request_params_list = list(request_params.items())
response = session.get(url, params=request_params_list)
if verbose:
print(f"Requesting URL: {response.request.url}")
response_json = response.json()
tests = response_json["results"]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment