Skip to content

Commit

Permalink
Silence the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bzaczynski committed Oct 21, 2024
1 parent 49e27cc commit bff387b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion wordcount/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from fixtures import *
from fixtures import * # noqa

pytest_plugins = ["realpython"]
2 changes: 2 additions & 0 deletions wordcount/tests/realpython/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# flake8: noqa

from .assertions import *
from .constants import *
from .hooks import *
Expand Down
8 changes: 6 additions & 2 deletions wordcount/tests/realpython/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@
from pytest import Config, Item, Parser, Session, TestReport

from . import RealPythonAssertionError
from .constants import (COMMAND_TASK, MIN_FAILURES_BEFORE_HINT,
STASH_REPORT_KEY, TEST_TIMEOUT_SECONDS)
from .constants import (
COMMAND_TASK,
MIN_FAILURES_BEFORE_HINT,
STASH_REPORT_KEY,
TEST_TIMEOUT_SECONDS,
)
from .models import ExerciseProgress, TestRun, TestStatus
from .resources import Resource
from .view import Display
Expand Down
3 changes: 1 addition & 2 deletions wordcount/tests/realpython/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
from rich.console import Console, Group
from rich.markdown import Markdown
from rich.panel import Panel
from rich.progress import BarColumn
from rich.progress import BarColumn, TextColumn
from rich.progress import Progress as ProgressBar
from rich.progress import TextColumn
from rich.table import Table
from rich.tree import Tree

Expand Down

0 comments on commit bff387b

Please sign in to comment.