Skip to content

Commit 1be2f06

Browse files
lint fixes
1 parent 587c1e9 commit 1be2f06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sandbox/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from http import HTTPStatus
1111

1212
import requests # pyright: ignore [reportMissingModuleSource]
13-
from flask import Flask, Request, Response, request, make_response # pyright: ignore [reportMissingImports]
13+
from flask import Flask, Request, Response, make_response, request # pyright: ignore [reportMissingImports]
1414

1515
# Configure logging to output to stdout
1616
logging.basicConfig(stream=sys.stdout, level=logging.INFO)
@@ -177,7 +177,7 @@ def health_check() -> Response:
177177
"timeout": False,
178178
"responseCode": 200,
179179
"outcome": "<html><h1>Ok</h1></html>",
180-
"links": {"self": f"https://default-eligibility-signposting-api-live/patient-check/_status"},
180+
"links": {"self": "https://default-eligibility-signposting-api-live/patient-check/_status"},
181181
}
182182
]
183183
},

0 commit comments

Comments
 (0)