Skip to content

Commit

Permalink
Update dependency rich to v13.8.0 (#159)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Kyle Finley <[email protected]>
  • Loading branch information
renovate[bot] and ITProKyle committed Sep 6, 2024
1 parent 3acc822 commit 514d1fd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions f_lib/logging/_console_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ def __init__( # noqa: PLR0913
show_level: bool = True,
show_path: bool = True,
show_time: bool = True,
tracebacks_code_width: int = 88,
tracebacks_extra_lines: int = 3,
tracebacks_max_frames: int = 100,
tracebacks_show_locals: bool = False,
tracebacks_suppress: Iterable[str | ModuleType] = (),
tracebacks_theme: str | None = None,
Expand Down Expand Up @@ -71,7 +73,9 @@ def __init__( # noqa: PLR0913
show_level: Show a column for the level.
show_path: Show the path to the original log call.
show_time: Show a column for the time.
tracebacks_code_width: Number of code characters used to render tracebacks, or None for full width.
tracebacks_extra_lines: Additional lines of code to render tracebacks, or None for full width.
tracebacks_max_frames: Optional maximum number of frames returned by traceback.
tracebacks_show_locals: Enable display of locals in tracebacks.
tracebacks_suppress: Optional sequence of modules or paths to exclude from traceback.
tracebacks_theme: Override pygments theme used in traceback.
Expand All @@ -97,7 +101,9 @@ def __init__( # noqa: PLR0913
show_level=show_level,
show_path=show_path,
show_time=show_time,
tracebacks_code_width=tracebacks_code_width,
tracebacks_extra_lines=tracebacks_extra_lines,
tracebacks_max_frames=tracebacks_max_frames,
tracebacks_show_locals=tracebacks_show_locals,
tracebacks_suppress=tracebacks_suppress,
tracebacks_theme=tracebacks_theme,
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 514d1fd

Please sign in to comment.