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 4f3cac4 commit 443ce19Copy full SHA for 443ce19
sentry_sdk/scope.py
@@ -247,7 +247,7 @@ def __copy__(self):
247
rv._contexts = self._contexts.copy() if self._contexts else {}
248
rv._extras = self._extras.copy() if self._extras else {}
249
250
- rv._breadcrumbs = copy(self._breadcrumbs) if self._breadcrumbs else {}
+ rv._breadcrumbs = copy(self._breadcrumbs) if self._breadcrumbs else deque()
251
rv._n_breadcrumbs_truncated = self._n_breadcrumbs_truncated
252
rv._event_processors = (
253
self._event_processors.copy() if self._event_processors else []
0 commit comments