Skip to content

Commit e627eed

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b22bd61 commit e627eed

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/enrich/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class FluidLogRender: # pylint: disable=too-few-public-methods
1919
"""Renders log by not using columns and avoiding any wrapping."""
2020

2121
# pylint: disable=too-many-arguments
22-
def __init__( # noqa: PLR0913
22+
def __init__(
2323
self,
2424
show_time: bool = False,
2525
show_level: bool = False,

test/test_console.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
import sys
55

66
import pytest
7-
from enrich.console import Console, should_do_markup
87
from pytest_mock import MockFixture # pylint: disable=wrong-import-order
98

9+
from enrich.console import Console, should_do_markup
10+
1011

1112
def test_rich_console_ex() -> None:
1213
"""Validate that ConsoleEx can capture output from print() calls."""

test/test_logging.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import re
88

99
import pytest
10+
1011
from enrich.console import Console
1112
from enrich.logging import RichHandler
1213

0 commit comments

Comments
 (0)