Skip to content

Commit afa3044

Browse files
lint
1 parent fbe9b3b commit afa3044

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

silverback/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ 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] noqa: E501
37+
_simplify_topic(
38+
[to_hex(hexstr=t) for t in et.split(",")] # type: ignore [arg-type]
39+
) if et else None
3840
for et in encoded_topics.split(";")
3941
]
4042
)

0 commit comments

Comments
 (0)