Fix type annotation from t.List to list in globals.py

This commit is contained in:
40gilad 2024-08-20 14:40:32 +03:00
parent cb1ee88cf9
commit 118181fec3

View file

@ -50,4 +50,4 @@ session: SessionMixin = LocalProxy( # type: ignore[assignment]
_cv_request, "session", unbound_message=_no_req_msg _cv_request, "session", unbound_message=_no_req_msg
) )
_false_attributes: t.list[str] = ["0", "false", "no", "null", "none"] _false_attributes: list[str] = ["0", "false", "no", "null", "none"]