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.
1 parent 28ca7e7 commit 9456348Copy full SHA for 9456348
sentry_sdk/_types.py
@@ -33,9 +33,6 @@ def __eq__(self, other):
33
def __str__(self):
34
return str({"value": str(self.value), "metadata": str(self.metadata)})
35
36
- def __repr__(self):
37
- return self
38
-
39
def __len__(self):
40
return len(self.value)
41
sentry_sdk/serializer.py
@@ -1,4 +1,3 @@
1
-import logging
2
import sys
3
import math
4
from collections.abc import Mapping, Sequence, Set
@@ -231,7 +230,6 @@ def _serialize_node(
231
230
def _flatten_annotated(obj):
232
# type: (Any) -> Any
233
if isinstance(obj, AnnotatedValue):
234
- logging.debug(obj)
235
_annotate(**obj.metadata)
236
obj = obj.value
237
return obj
0 commit comments