We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Any
1 parent c917fa4 commit 07a1f3cCopy full SHA for 07a1f3c
stubs/gunicorn/gunicorn/debug.pyi
@@ -10,7 +10,12 @@ class Spew:
10
show_values: bool
11
12
def __init__(self, trace_names: Container[str] | None = None, show_values: bool = True) -> None: ...
13
- def __call__(self, frame: FrameType, event: str, arg: Any) -> Self: ...
+ def __call__(
14
+ self,
15
+ frame: FrameType,
16
+ event: str,
17
+ arg: Any, # `arg` is not used inside the function, stub is set Any
18
+ ) -> Self: ...
19
20
def spew(trace_names: Container[str] | None = None, show_values: bool = False) -> None: ...
21
def unspew() -> None: ...
0 commit comments