Skip to content

Commit 9a76467

Browse files
committed
fix: consolidate imports
1 parent fa84764 commit 9a76467

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

dataframe_expectations/expectations/aggregation/any_value.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
from pyspark.sql import DataFrame as PySparkDataFrame
55
from pyspark.sql import functions as F
66

7-
from dataframe_expectations.core.types import DataFrameLike, DataFrameType
87
from dataframe_expectations.core.aggregation_expectation import (
98
DataFrameAggregationExpectation,
109
)
1110
from dataframe_expectations.core.types import (
1211
ExpectationCategory,
1312
ExpectationSubcategory,
13+
DataFrameLike,
14+
DataFrameType,
1415
)
1516
from dataframe_expectations.registry import register_expectation
1617
from dataframe_expectations.core.utils import requires_params

dataframe_expectations/expectations/aggregation/numerical.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
from pyspark.sql import DataFrame as PySparkDataFrame
66
from pyspark.sql import functions as F
77

8-
from dataframe_expectations.core.types import DataFrameLike, DataFrameType
98
from dataframe_expectations.core.aggregation_expectation import (
109
DataFrameAggregationExpectation,
1110
)
1211
from dataframe_expectations.core.types import (
1312
ExpectationCategory,
1413
ExpectationSubcategory,
14+
DataFrameLike,
15+
DataFrameType,
1516
)
1617
from dataframe_expectations.registry import register_expectation
1718
from dataframe_expectations.core.utils import requires_params

0 commit comments

Comments
 (0)