Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: detect-private-key
exclude: tests/test_fixtures/database_key_test*|tests/datasource/fluent/test_snowflake_datasource\.py
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.12"
rev: "v0.15.15"
hooks:
- id: ruff
args: ["--fix"]
Expand Down
3 changes: 0 additions & 3 deletions docs/docusaurus/docs/snippets/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
)

if TYPE_CHECKING:
from great_expectations.core.expectation_validation_result import (
ExpectationSuiteValidationResult,
)
from great_expectations.data_context import AbstractDataContext


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
from great_expectations.checkpoint.checkpoint import Checkpoint, CheckpointResult
from great_expectations.core.suite_parameters import SuiteParameterDict
from great_expectations.data_context.store.store import StoreConfigTypedDict
from great_expectations.datasource.fluent import Datasource as FluentDatasource
from great_expectations.render.renderer.site_builder import SiteBuilder

logger = logging.getLogger(__name__)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

if TYPE_CHECKING:
from great_expectations.alias_types import PathStr
from great_expectations.compatibility import azure
from great_expectations.core.batch import LegacyBatchDefinition


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@
if TYPE_CHECKING:
from sqlalchemy.engine import Engine as SaEngine # noqa: TID251 # FIXME CoP

from great_expectations.compatibility import sqlalchemy

SQLAColumnClause: TypeAlias = object # sqlalchemy isn't installed in all environments

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
if TYPE_CHECKING:
import pandas as pd

from great_expectations.data_context import AbstractDataContext
from great_expectations.datasource.fluent.sql_datasource import TableAsset
from tests.integration.sql_session_manager import SessionSQLEngineManager


@dataclass(frozen=True)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

if TYPE_CHECKING:
from great_expectations.compatibility import pyspark
from great_expectations.compatibility.pyspark import types as pyspark_types


@dataclass(frozen=True)
Expand Down
4 changes: 0 additions & 4 deletions tests/render/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@
if TYPE_CHECKING:
import pytest_mock

from great_expectations.core.expectation_validation_result import (
ExpectationSuiteValidationResult,
)


@pytest.fixture(scope="module")
def empty_data_context_module_scoped(tmp_path_factory) -> FileDataContext:
Expand Down
Loading