We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 121c9d2 commit fedb6a3Copy full SHA for fedb6a3
1 file changed
sentry_sdk/_types.py
@@ -217,9 +217,7 @@ class SDKInfo(TypedDict):
217
Hint = Dict[str, Any]
218
219
AttributeValue = (
220
- str | bool | float | int
221
- # TODO: relay support coming soon for
222
- # | list[str] | list[bool] | list[float] | list[int]
+ str | bool | float | int | list[str] | list[bool] | list[float] | list[int]
223
)
224
Attributes = dict[str, AttributeValue]
225
@@ -232,11 +230,10 @@ class SDKInfo(TypedDict):
232
230
"boolean",
233
231
"double",
234
"integer",
235
- # TODO: relay support coming soon for:
236
- # "string[]",
237
- # "boolean[]",
238
- # "double[]",
239
- # "integer[]",
+ "string[]",
+ "boolean[]",
+ "double[]",
+ "integer[]",
240
],
241
"value": AttributeValue,
242
},
0 commit comments