From 5187cf730f4bafbb4710985d2690aec3623c8de7 Mon Sep 17 00:00:00 2001 From: Jacob Magar Date: Mon, 16 Mar 2026 10:29:56 -0400 Subject: [PATCH] fix(auth): use Any return type in _reload_settings for ty compatibility --- tests/test_auth_settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_auth_settings.py b/tests/test_auth_settings.py index 1d9c417..3c696a6 100644 --- a/tests/test_auth_settings.py +++ b/tests/test_auth_settings.py @@ -1,9 +1,10 @@ """Tests for Google OAuth settings loading.""" import importlib +from typing import Any -def _reload_settings(monkeypatch, overrides: dict) -> object: +def _reload_settings(monkeypatch, overrides: dict) -> Any: """Reload settings module with given env vars set.""" for k, v in overrides.items(): monkeypatch.setenv(k, v)