Skip to content

Commit f605362

Browse files
fix: remove HTML from acceptable content types for trace recording (#86)
1 parent 13c3f06 commit f605362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drift/core/content_type_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"application/binary": DecodedType.BINARY,
112112
}
113113

114-
ACCEPTABLE_DECODED_TYPES = {DecodedType.JSON, DecodedType.PLAIN_TEXT, DecodedType.HTML}
114+
ACCEPTABLE_DECODED_TYPES = {DecodedType.JSON, DecodedType.PLAIN_TEXT}
115115

116116

117117
def get_decoded_type(content_type: str | None) -> DecodedType | None:

0 commit comments

Comments
 (0)