mirror of
https://github.com/niess/python-appimage.git
synced 2025-09-05 17:20:15 +02:00
11 lines
166 B
Python
11 lines
166 B
Python
__all__ = ['decode']
|
|
|
|
|
|
def decode(s):
|
|
'''Decode Python 3 bytes as str
|
|
'''
|
|
try:
|
|
return s.decode()
|
|
except AttributeError:
|
|
return str(s)
|