mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-12 02:51:49 -05:00
3 lines
88 B
Python
3 lines
88 B
Python
def read_to_unicode(obj):
|
|
return [line.decode('utf-8') for line in obj.readlines()]
|