Skip to content

Commit e36c40b

Browse files
committed
fix type hint
1 parent d7f64c4 commit e36c40b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/_metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def _capture_metric(
2424

2525
client = sentry_sdk.get_client()
2626

27-
attrs = {} # type: dict[str, Union[str, bool, float, int]
27+
attrs = {} # type: dict[str, Union[str, bool, float, int]]
2828
if attributes:
2929
for k, v in attributes.items():
3030
attrs[k] = (

0 commit comments

Comments
 (0)