diff --git a/precli/cli/main.py b/precli/cli/main.py index 6ef05bc8..d0597e80 100644 --- a/precli/cli/main.py +++ b/precli/cli/main.py @@ -352,7 +352,7 @@ def main(): ) # Invoke the run - run = Run(enabled, disabled, artifacts, console, debug) + run = Run(enabled, disabled, artifacts, debug) run.invoke() # Render the results diff --git a/precli/core/run.py b/precli/core/run.py index b00c4a85..af7a7eba 100644 --- a/precli/core/run.py +++ b/precli/core/run.py @@ -9,7 +9,6 @@ from multiprocessing import Pool from pygments import lexers -from rich.console import Console from rich.progress import BarColumn from rich.progress import MofNCompleteColumn from rich.progress import Progress @@ -116,13 +115,11 @@ def __init__( enabled: list[str], disabled: list[str], artifacts: list[Artifact], - console: Console, debug: int, ): self._enabled = enabled self._disabled = disabled self._artifacts = artifacts - self._console = console self._init_logger(debug) self._start_time = None self._end_time = None