Skip to content

Commit

Permalink
Update signature of run_schema_components_checks
Browse files Browse the repository at this point in the history
Signed-off-by: Deepyaman Datta <[email protected]>
  • Loading branch information
deepyaman committed Dec 24, 2024
1 parent f79c9fa commit f0fb76a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandera/backends/ibis/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def validate(
# run the checks
core_checks = [

Check warning on line 54 in pandera/backends/ibis/container.py

View check run for this annotation

Codecov / codecov/patch

pandera/backends/ibis/container.py#L54

Added line #L54 was not covered by tests
(self.check_column_presence, (check_obj, schema, column_info)),
(self.run_schema_component_checks, (sample, components, lazy)),
(self.run_schema_component_checks, (sample, schema, components, lazy)),
]

# pylint: disable=no-member
Expand Down Expand Up @@ -102,6 +102,7 @@ def validate(
def run_schema_component_checks(

Check warning on line 102 in pandera/backends/ibis/container.py

View check run for this annotation

Codecov / codecov/patch

pandera/backends/ibis/container.py#L102

Added line #L102 was not covered by tests
self,
check_obj: ir.Table,
schema,
schema_components: Iterable,
lazy: bool,
) -> List[CoreCheckResult]:
Expand Down

0 comments on commit f0fb76a

Please sign in to comment.