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 2f3a402 commit b2c9af9Copy full SHA for b2c9af9
sentry_sdk/scope.py
@@ -653,6 +653,7 @@ def _drop(cause, ty):
653
654
def update_from_scope(self, scope):
655
# type: (Scope) -> None
656
+ """Update the scope with another scope's data."""
657
if scope._level is not None:
658
self._level = scope._level
659
if scope._fingerprint is not None:
@@ -690,6 +691,7 @@ def update_from_kwargs(
690
691
fingerprint=None, # type: Optional[List[str]]
692
):
693
# type: (...) -> None
694
+ """Update the scope's attributes."""
695
if level is not None:
696
self._level = level
697
if user is not None:
0 commit comments