Skip to content

Commit eb66e8a

Browse files
committed
Add 'no cover' directive to line
1 parent d1f1a8d commit eb66e8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pointblank/_interrogation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2022,7 +2022,7 @@ def _column_has_null_values(table: FrameT, column: str) -> bool:
20222022
def _modify_datetime_compare_val(tgt_column: any, compare_val: any) -> any:
20232023
tgt_col_dtype_str = str(tgt_column.dtype).lower()
20242024

2025-
if compare_val is isinstance(compare_val, Column):
2025+
if compare_val is isinstance(compare_val, Column): # pragma: no cover
20262026
return compare_val
20272027

20282028
# Get the type of `compare_expr` and convert, if necessary, to the type of the column

0 commit comments

Comments
 (0)