We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58ec580 commit c0d550fCopy full SHA for c0d550f
src/scikit_build_core/settings/documentation.py
@@ -85,7 +85,7 @@ def get_display_type(field_type: type | str) -> str:
85
if get_origin(field_type) is Annotated:
86
# For annotated assume we always want the second item
87
return get_display_type(get_args(field_type)[1])
88
- if field_type is typing.Any: # type: ignore[comparison-overlap]
+ if field_type is typing.Any:
89
# Workaround for python<3.10 where typing.Any.__name__ does not evaluate
90
return "Any"
91
# Otherwise just get the formatted form of the `type` object
0 commit comments