Max Orlov
Results
12
comments of
Max Orlov
It works with that hack: ``` def define_func(func: Callable[P, None]) -> Callable[P, CLS[P]]: def _func(*args: P.args, **kwargs: P.kwargs) -> CLS[P]: return CLS(*args, **kwargs) return _func def single(x: int) -> None:...
Are these lines necessary: https://github.com/Textualize/rich/blob/master/rich/console.py#L1680 ```python if not objects: objects = (NewLine(),) ``` ?