File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -145,17 +145,9 @@ def scrub_breadcrumbs(self, event):
145145 with capture_internal_exceptions ():
146146 if "breadcrumbs" in event :
147147 if "values" in event ["breadcrumbs" ]:
148- if (
149- isinstance (event ["breadcrumbs" ], AnnotatedValue )
150- and event ["breadcrumbs" ].value ["values" ] is not None
151- ):
152- for value in event ["breadcrumbs" ].value ["values" ]:
153- if "data" in value :
154- self .scrub_dict (value ["data" ])
155- else :
156- for value in event ["breadcrumbs" ]["values" ]:
157- if "data" in value :
158- self .scrub_dict (value ["data" ])
148+ for value in event ["breadcrumbs" ]["values" ]:
149+ if "data" in value :
150+ self .scrub_dict (value ["data" ])
159151
160152 def scrub_frames (self , event ):
161153 # type: (Event) -> None
You can’t perform that action at this time.
0 commit comments