mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-07 04:10:38 +08:00
15 lines
227 B
Python
15 lines
227 B
Python
"""
|
|
Stringify to unicode
|
|
"""
|
|
|
|
|
|
def unicode_str(text):
|
|
"""
|
|
Convert text to unicode
|
|
:param text:
|
|
:return:
|
|
"""
|
|
if isinstance(text, bytes):
|
|
return text.decode("utf-8", "strict")
|
|
return str(text)
|