Skip to content

Commit e1a9970

Browse files
committed
autobrief return not implemented instead of None
1 parent acd0fc2 commit e1a9970

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pointblank/validate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13279,7 +13279,7 @@ def _create_autobrief_or_failure_text(
1327913279
if assertion_type == "specially":
1328013280
return _create_text_specially(lang=lang, for_failure=for_failure)
1328113281

13282-
return None # pragma: no cover
13282+
raise NotImplementedError # pragma: no cover
1328313283

1328413284

1328513285
def _expect_failure_type(for_failure: bool) -> str:
@@ -13345,7 +13345,7 @@ def _create_text_between(
1334513345

1334613346

1334713347
def _create_text_set(
13348-
lang: str, column: str, values: list[any], not_: bool = False, for_failure: bool = False
13348+
lang: str, column: str, values: list[Any], not_: bool = False, for_failure: bool = False
1334913349
) -> str:
1335013350
type_ = _expect_failure_type(for_failure=for_failure)
1335113351

0 commit comments

Comments
 (0)