From 779eb538e9d4fc83280c69ebaa55d86b87b45eb4 Mon Sep 17 00:00:00 2001 From: Punit Naik Date: Wed, 28 Jan 2026 16:25:27 +0530 Subject: [PATCH] lint fix --- chuck_data/agent/tool_executor.py | 1 - chuck_data/llm/factory.py | 1 - tests/unit/commands/test_bulk_tag_pii.py | 1 - tests/unit/commands/test_jobs.py | 1 - tests/unit/commands/test_list_schemas.py | 1 - tests/unit/commands/test_scan_pii.py | 1 - tests/unit/commands/test_schema_selection.py | 1 - 7 files changed, 7 deletions(-) diff --git a/chuck_data/agent/tool_executor.py b/chuck_data/agent/tool_executor.py index 5774aa1..e123671 100644 --- a/chuck_data/agent/tool_executor.py +++ b/chuck_data/agent/tool_executor.py @@ -26,7 +26,6 @@ from typing import Dict, Any, Optional, List, Callable from jsonschema.exceptions import ValidationError - # The display_to_user utility and individual tool implementation functions # (like list_models, set_warehouse, tag_pii_columns, scan_schema_for_pii, etc.) # that were previously in this file have been removed. diff --git a/chuck_data/llm/factory.py b/chuck_data/llm/factory.py index 991c883..d0065db 100644 --- a/chuck_data/llm/factory.py +++ b/chuck_data/llm/factory.py @@ -5,7 +5,6 @@ from typing import Optional from chuck_data.llm.provider import LLMProvider - logger = logging.getLogger(__name__) diff --git a/tests/unit/commands/test_bulk_tag_pii.py b/tests/unit/commands/test_bulk_tag_pii.py index aec3a76..c870044 100644 --- a/tests/unit/commands/test_bulk_tag_pii.py +++ b/tests/unit/commands/test_bulk_tag_pii.py @@ -7,7 +7,6 @@ from unittest.mock import patch from chuck_data.commands.bulk_tag_pii import handle_bulk_tag_pii - # ===== PARAMETER VALIDATION TESTS ===== diff --git a/tests/unit/commands/test_jobs.py b/tests/unit/commands/test_jobs.py index 77ea91d..0e52999 100644 --- a/tests/unit/commands/test_jobs.py +++ b/tests/unit/commands/test_jobs.py @@ -9,7 +9,6 @@ from chuck_data.commands.base import CommandResult from chuck_data.agent.tool_executor import execute_tool - # --- Parameter Validation Tests --- diff --git a/tests/unit/commands/test_list_schemas.py b/tests/unit/commands/test_list_schemas.py index 1d7cfb8..98d88e9 100644 --- a/tests/unit/commands/test_list_schemas.py +++ b/tests/unit/commands/test_list_schemas.py @@ -10,7 +10,6 @@ from chuck_data.config import set_active_catalog, set_active_schema from chuck_data.agent.tool_executor import execute_tool - # ===== Parameter Validation Tests ===== diff --git a/tests/unit/commands/test_scan_pii.py b/tests/unit/commands/test_scan_pii.py index 9483c08..2fbc4cc 100644 --- a/tests/unit/commands/test_scan_pii.py +++ b/tests/unit/commands/test_scan_pii.py @@ -11,7 +11,6 @@ from chuck_data.commands.scan_pii import handle_command from chuck_data.config import ConfigManager - # ===== Parameter Validation Tests ===== diff --git a/tests/unit/commands/test_schema_selection.py b/tests/unit/commands/test_schema_selection.py index d3e072d..5bcc22e 100644 --- a/tests/unit/commands/test_schema_selection.py +++ b/tests/unit/commands/test_schema_selection.py @@ -10,7 +10,6 @@ from chuck_data.config import get_active_schema, set_active_catalog from chuck_data.agent.tool_executor import execute_tool - # ===== Parameter Validation Tests =====