You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log_time_format (Union[str, TimeFormatterCallable], optional): If ``log_time`` is enabled, either string for strftime or callable that formats the time. Defaults to "[%x %X] ".
But in the code, the actual type is Union[str, FormatTimeCallable]:
Describe the bug
In the docstring, the type for log_time_format is
Union[str, TimeFormatterCallable]
, see:rich/rich/logging.py
Line 47 in fd98182
But in the code, the actual type is
Union[str, FormatTimeCallable]
:rich/rich/logging.py
Line 84 in fd98182
These should probably be the same.
Platform
Does not apply.
The text was updated successfully, but these errors were encountered: