Skip to content

Commit 45f7a4b

Browse files
committed
remove unecessary None type in _create_text_col_exists
1 parent 4594d7c commit 45f7a4b

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
@@ -13405,7 +13405,7 @@ def _create_text_expr(lang: str, for_failure: bool) -> str:
1340513405
return EXPECT_FAIL_TEXT[f"col_vals_expr_{type_}_text"][lang]
1340613406

1340713407

13408-
def _create_text_col_exists(lang: str, column: str | None, for_failure: bool = False) -> str:
13408+
def _create_text_col_exists(lang: str, column: str, for_failure: bool = False) -> str:
1340913409
type_ = _expect_failure_type(for_failure=for_failure)
1341013410

1341113411
column_text = _prep_column_text(column=column)

0 commit comments

Comments
 (0)