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 2a9d4b5 commit 7d82662Copy full SHA for 7d82662
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
+ _simplify_topic([to_hex(hexstr=t) for t in et.split(",")]) if et else None # type: ignore [arg-type]
38
for et in encoded_topics.split(";")
39
]
40
)
0 commit comments