Skip to content

Commit baf3fac

Browse files
committed
ci: Remove type ignore comment
1 parent b3decd4 commit baf3fac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mkdocstrings_handlers/python/_internal/rendering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ def _parse_docstring_summary(attribute: Attribute) -> str:
639639
name=attribute.name,
640640
description=_parse_docstring_summary(attribute),
641641
annotation=attribute.annotation,
642-
value=attribute.value, # type: ignore[arg-type]
642+
value=attribute.value,
643643
)
644644
for attribute in attributes
645645
if not check_public or attribute.is_public

0 commit comments

Comments
 (0)