From ce1cad4c419f90a2360d45af0e88f03c0f4bbef4 Mon Sep 17 00:00:00 2001 From: Deeman Date: Sun, 12 Oct 2025 21:36:32 +0200 Subject: [PATCH] fix --- src/materia/cli.py | 2 +- tests/conftest.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/materia/cli.py b/src/materia/cli.py index de20c57..71b7df7 100644 --- a/src/materia/cli.py +++ b/src/materia/cli.py @@ -91,7 +91,7 @@ def pipeline_run( if result.success: typer.echo(result.output) - typer.echo(f"\n✓ Pipeline completed successfully") + typer.echo("\n✓ Pipeline completed successfully") else: typer.echo(result.error, err=True) raise typer.Exit(1) diff --git a/tests/conftest.py b/tests/conftest.py index b49ef15..28b08df 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,5 @@ """Pytest configuration and fixtures.""" -import os import pytest from unittest.mock import Mock, patch