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 fbe9b3b commit afa3044Copy full SHA for afa3044
silverback/utils.py
@@ -34,7 +34,9 @@ def decode_topics_from_string(encoded_topics: str) -> list[Topic]:
34
# NOTE: Should reverse the above
35
return _clean_trailing_nones(
36
[
37
- _simplify_topic([to_hex(hexstr=t) for t in et.split(",")]) if et else None # type: ignore [arg-type] noqa: E501
+ _simplify_topic(
38
+ [to_hex(hexstr=t) for t in et.split(",")] # type: ignore [arg-type]
39
+ ) if et else None
40
for et in encoded_topics.split(";")
41
]
42
)
0 commit comments