Skip to content

Commit

Permalink
Format pandera/backends/ibis/checks.py using Black
Browse files Browse the repository at this point in the history
Signed-off-by: Deepyaman Datta <[email protected]>
  • Loading branch information
deepyaman committed Jan 9, 2025
1 parent e0f868d commit 34daca5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pandera/backends/ibis/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def aggregate(self, check_obj: ir.Table):
"""Implements aggregation behavior for check object."""
raise NotImplementedError

def preprocess(self, check_obj: Union[ir.Column, ir.Table], key: Optional[str]):
def preprocess(
self, check_obj: Union[ir.Column, ir.Table], key: Optional[str]
):
"""Preprocesses a check object before applying the check function."""
# This handles the case of Column validation by promoting it to
# a Table with a single column. Table inputs are unaffected.
Expand Down

0 comments on commit 34daca5

Please sign in to comment.