wg-backend-django/dell-env/lib/python3.11/site-packages/ansi2html/util.py

6 lines
147 B
Python
Raw Normal View History

2023-10-30 03:40:43 -04:00
from typing import BinaryIO, List
def read_to_unicode(obj: BinaryIO) -> List[str]:
return [line.decode("utf-8") for line in obj.readlines()]