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 a403546 commit fb5f809Copy full SHA for fb5f809
posthog/utils.py
@@ -104,7 +104,7 @@ def _coerce_unicode(cmplx):
104
item = cmplx.decode("utf-8", "strict")
105
except AttributeError as exception:
106
item = ":".join(exception)
107
- item.decode("utf-8", "strict") # type: ignore
+ item.decode("utf-8", "strict") # type: ignore
108
log.warning("Error decoding: %s", item)
109
return None
110
return item
0 commit comments