---
src/fedrq/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/fedrq/__init__.py b/src/fedrq/__init__.py
index 654114a..c2cfee5 100644
--- a/src/fedrq/__init__.py
+++ b/src/fedrq/__init__.py
@@ -17,7 +17,7 @@ __version__ = "1.0.0.post0"
def _filter_pydantic_v2_warnings() -> None:
- typ: DeprecationWarning | None
+ typ: type[DeprecationWarning] | None
if typ := getattr(pydantic, "PydanticDeprecatedSince20", None):
warnings.simplefilter(action="ignore", category=typ)
--
2.44.0