MCPcopy
hub / github.com/Textualize/rich / __init__

Method __init__

rich/screen.py:28–38  ·  view source on GitHub ↗
(
        self,
        *renderables: "RenderableType",
        style: Optional[StyleType] = None,
        application_mode: bool = False,
    )

Source from the content-addressed store, hash-verified

26 renderable: "RenderableType"
27
28 def __init__(
29 self,
30 *renderables: "RenderableType",
31 style: Optional[StyleType] = None,
32 application_mode: bool = False,
33 ) -> None:
34 from rich.console import Group
35
36 self.renderable = Group(*renderables)
37 self.style = style
38 self.application_mode = application_mode
39
40 def __rich_console__(
41 self, console: "Console", options: "ConsoleOptions"

Callers

nothing calls this directly

Calls 1

GroupClass · 0.90

Tested by

no test coverage detected