Skip to content

Commit 15cc41f

Browse files
committed
remove unecessary None type in _create_text_col_exists
1 parent b6e6008 commit 15cc41f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pointblank/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12366,7 +12366,7 @@ def _create_text_expr(lang: str, for_failure: bool) -> str:
1236612366
return EXPECT_FAIL_TEXT[f"col_vals_expr_{type_}_text"][lang]
1236712367

1236812368

12369-
def _create_text_col_exists(lang: str, column: str | None, for_failure: bool = False) -> str:
12369+
def _create_text_col_exists(lang: str, column: str, for_failure: bool = False) -> str:
1237012370
type_ = _expect_failure_type(for_failure=for_failure)
1237112371

1237212372
column_text = _prep_column_text(column=column)

0 commit comments

Comments
 (0)