From 4eac47029f798a2c71b1cb4ebe57f81209845d5c Mon Sep 17 00:00:00 2001 From: Kirill Markin Date: Tue, 17 Dec 2024 15:10:49 +0100 Subject: [PATCH] linter clenaup --- tests/test_cli.py | 2 ++ tests/test_core.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/test_cli.py b/tests/test_cli.py index b89db81..7382ce7 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -12,6 +12,8 @@ from repo_to_text.cli.cli import ( main ) +# pylint: disable=redefined-outer-name + @pytest.fixture def temp_dir() -> Generator[str, None, None]: """Create a temporary directory for testing.""" diff --git a/tests/test_core.py b/tests/test_core.py index de18e44..1882388 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -14,6 +14,8 @@ from repo_to_text.core.core import ( save_repo_to_text ) +# pylint: disable=redefined-outer-name + @pytest.fixture def temp_dir() -> Generator[str, None, None]: """Create a temporary directory for testing."""