Skip to content

Commit 54fddec

Browse files
committed
mypy fix
1 parent 2f4a0fe commit 54fddec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/api/helpers/error_upsampling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def convert_fields_for_upsampling(data: list[dict[str, Any]], fields_meta: dict[
3939
fields_meta: Meta fields dictionary to modify in-place
4040
"""
4141
# Collect keys that need conversion and exist in data
42-
all_present_keys = set()
42+
all_present_keys: set[str] = set()
4343
for result in data:
4444
all_present_keys.update(result.keys())
4545

0 commit comments

Comments
 (0)