6 lines
160 B
Python
6 lines
160 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
|
||
|
|
class UnsupportedTextFileError(Exception):
|
||
|
|
"""Raised when a file does not appear to contain supported text content."""
|