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 7d82662 commit fbe9b3bCopy full SHA for fbe9b3b
silverback/utils.py
@@ -34,7 +34,7 @@ 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]
+ _simplify_topic([to_hex(hexstr=t) for t in et.split(",")]) if et else None # type: ignore [arg-type] noqa: E501
38
for et in encoded_topics.split(";")
39
]
40
)
0 commit comments