Skip to content

Commit fbe9b3b

Browse files
noqa: E501
1 parent 7d82662 commit fbe9b3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

silverback/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def decode_topics_from_string(encoded_topics: str) -> list[Topic]:
3434
# NOTE: Should reverse the above
3535
return _clean_trailing_nones(
3636
[
37-
_simplify_topic([to_hex(hexstr=t) for t in et.split(",")]) if et else None # type: ignore [arg-type]
37+
_simplify_topic([to_hex(hexstr=t) for t in et.split(",")]) if et else None # type: ignore [arg-type] noqa: E501
3838
for et in encoded_topics.split(";")
3939
]
4040
)

0 commit comments

Comments
 (0)