tests: fully type the test suite (#2794)
* tests: fully type the test suite * chore: require more typing Signed-off-by: Henry Schreiner <henryfs@princeton.edu> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: Henry Schreiner <henryfs@princeton.edu> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
co-authored by
pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
parent
643b30c796
commit
097806b6b1
@@ -987,8 +987,8 @@ class Options:
|
||||
def option_summary(
|
||||
self,
|
||||
option_name: str,
|
||||
option_value: Any,
|
||||
default_value: Any,
|
||||
option_value: Any, # noqa: ANN401
|
||||
default_value: Any, # noqa: ANN401
|
||||
overrides: Mapping[str, Any] | None = None,
|
||||
skip_unset: bool = False,
|
||||
) -> str | None:
|
||||
@@ -1040,7 +1040,7 @@ class Options:
|
||||
return value
|
||||
|
||||
@staticmethod
|
||||
def option_summary_value(option_value: Any) -> str:
|
||||
def option_summary_value(option_value: Any) -> str: # noqa: ANN401
|
||||
if hasattr(option_value, "options_summary"):
|
||||
option_value = option_value.options_summary()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user