We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6af9d96 commit ecad4d1Copy full SHA for ecad4d1
1 file changed
tests/test_checks.py
@@ -94,7 +94,7 @@ def test_initializer(self):
94
),
95
)
96
97
- def run_check(self, check: Check, columns: Union[str, List[str]] = "constraint_status") -> list[Row]:
+ def run_check(self, check: Check, columns: Union[str, List[str]] = "constraint_status") -> List[Row]:
98
columns = [columns] if isinstance(columns, str) else columns
99
result = VerificationSuite(self.spark).onData(self.df).addCheck(check).run()
100
df = VerificationResult.checkResultsAsDataFrame(self.spark, result)
0 commit comments