We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9de1fc commit 9e53ed3Copy full SHA for 9e53ed3
1 file changed
sentry_sdk/serializer.py
@@ -338,9 +338,9 @@ def _serialize_node_impl(
338
):
339
rv_list = []
340
341
- for i, v in enumerate(obj): # type: ignore
+ for i, v in enumerate(obj): # type: ignore[arg-type]
342
if remaining_breadth is not None and i >= remaining_breadth:
343
- _annotate(len=len(obj)) # type: ignore
+ _annotate(len=len(obj)) # type: ignore[arg-type]
344
break
345
346
rv_list.append(
0 commit comments