mirror of
https://github.com/morpheus65535/bazarr.git
synced 2026-01-17 06:18:58 +08:00
12 lines
313 B
Python
12 lines
313 B
Python
from typing import Any
|
|
|
|
from .abc import RichRenderable
|
|
|
|
|
|
def is_renderable(check_object: Any) -> bool:
|
|
"""Check if an object may be rendered by Rich."""
|
|
return (
|
|
isinstance(check_object, str)
|
|
or hasattr(check_object, "__rich__")
|
|
or hasattr(check_object, "__rich_console__")
|
|
)
|