From 4fe02b97f74ca5988f8f27112e463aee061c8930 Mon Sep 17 00:00:00 2001 From: lchen-2101 <73617864+lchen-2101@users.noreply.github.com> Date: Wed, 11 Oct 2023 10:26:39 -0400 Subject: [PATCH] fix: lint fix --- tests/app/test_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/test_config.py b/tests/app/test_config.py index 31ea57a..9336bc1 100644 --- a/tests/app/test_config.py +++ b/tests/app/test_config.py @@ -19,5 +19,5 @@ def test_jwt_opts_invalid_values(): "jwt_opts_test3": "12", } with pytest.raises(Exception) as e: - settings = Settings(**mock_config) + Settings(**mock_config) assert "validation error" in str(e.value)