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 01f52e8 commit dd3232fCopy full SHA for dd3232f
2 files changed
py/sentry_relay/consts.py
@@ -203,8 +203,8 @@ def _check_category_unit_generated():
203
204
_check_category_unit_generated()
205
206
-SPAN_STATUS_CODE_TO_NAME = {}
207
-SPAN_STATUS_NAME_TO_CODE = {}
+SPAN_STATUS_CODE_TO_NAME: dict[int, str] = {}
+SPAN_STATUS_NAME_TO_CODE: dict[str, int] = {}
208
209
210
def _make_span_statuses():
py/sentry_relay/exceptions.py
@@ -3,7 +3,7 @@
3
from sentry_relay._lowlevel import lib
4
5
__all__ = ["RelayError"]
6
-exceptions_by_code = {}
+exceptions_by_code: dict[int, Exception] = {}
7
8
9
class RelayError(Exception):
0 commit comments