Skip to content

Commit 404f349

Browse files
committed
formatting
1 parent 691b5ca commit 404f349

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sentry_sdk/scope.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1381,7 +1381,9 @@ def _apply_contexts_to_event(self, event, hint, options):
13811381
def _apply_flags_to_event(self, event, hint, options):
13821382
# type: (Event, Hint, Optional[Dict[str, Any]]) -> None
13831383
flags = self.flags.get()
1384-
event.setdefault("contexts", {}).setdefault("flags", {}).update({"values": flags})
1384+
event.setdefault("contexts", {}).setdefault("flags", {}).update(
1385+
{"values": flags}
1386+
)
13851387

13861388
def _drop(self, cause, ty):
13871389
# type: (Any, str) -> Optional[Any]

0 commit comments

Comments
 (0)