From 6aafb9cf5680bc8ba5d87933f2f0f5c579f6392a Mon Sep 17 00:00:00 2001 From: John Dutchover <1983909-johndutchover@users.noreply.gitlab.com> Date: Thu, 14 Dec 2023 22:28:52 -0500 Subject: [PATCH] add type hinting test_translate --- app/tests/test_translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tests/test_translate.py b/app/tests/test_translate.py index b9432dd..068081e 100644 --- a/app/tests/test_translate.py +++ b/app/tests/test_translate.py @@ -5,7 +5,7 @@ client = TestClient(app) -def test_translate(): +def test_translate() -> None: # Use the imported modules to avoid unused import warning print(facts) print(translate)