Skip to content

Commit ad8f08d

Browse files
authored
[ibis 🦩] remove inplace=True in column validate call (#2068)
Signed-off-by: cosmicBboy <[email protected]>
1 parent 37d6385 commit ad8f08d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandera/backends/ibis/container.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,7 @@ def run_schema_component_checks(
161161
# schema-component-level checks
162162
for schema_component in schema_components:
163163
try:
164-
result = schema_component.validate(
165-
check_obj, lazy=lazy, inplace=True
166-
)
164+
result = schema_component.validate(check_obj, lazy=lazy)
167165
check_passed.append(isinstance(result, ibis.Table))
168166
except SchemaError as err:
169167
check_results.append(

0 commit comments

Comments
 (0)