@@ -52,7 +52,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
5252 ]
5353
5454 super ().__init__ (
55- processors = processors ,
55+ processors = processors , # type: ignore[arg-type]
5656 foreign_pre_chain = _build_default_processors (json_format = False ),
5757 pass_foreign_args = True , # for args from record.args in positional_args
5858 )
@@ -68,7 +68,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
6868 ]
6969
7070 super ().__init__ (
71- processors = processors ,
71+ processors = processors , # type: ignore[arg-type]
7272 foreign_pre_chain = _build_default_processors (json_format = False ),
7373 pass_foreign_args = True , # for args from record.args in positional_args
7474 )
@@ -91,7 +91,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
9191 ]
9292
9393 super ().__init__ (
94- processors = processors ,
94+ processors = processors , # type: ignore[arg-type]
9595 foreign_pre_chain = _build_default_processors (json_format = True ),
9696 pass_foreign_args = True , # for args from record.args in positional_args
9797 )
@@ -107,7 +107,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
107107 ]
108108
109109 super ().__init__ (
110- processors = processors ,
110+ processors = processors , # type: ignore[arg-type]
111111 foreign_pre_chain = _build_default_processors (json_format = True ),
112112 pass_foreign_args = True , # for args from record.args in positional_args
113113 )
@@ -134,7 +134,7 @@ def build_uvicorn_log_config(
134134 default = UvicornDefaultJSONFormatter
135135 access = UvicornAccessJSONFormatter if not include_trace else TraceUvicornAccessJSONFormatter
136136 else :
137- default = UvicornDefaultConsoleFormatter
137+ default = UvicornDefaultConsoleFormatter # type: ignore[assignment]
138138 access = UvicornAccessConsoleFormatter if not include_trace else TraceUvicornAccessConsoleFormatter
139139
140140 return {
0 commit comments