Skip to content

Commit

Permalink
Make mypy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jl-wynen committed Nov 25, 2024
1 parent efe86d2 commit 0cf717e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scitacean/_html_repr/_attachment_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _get_fields(attachment: Attachment) -> list[Field]:
Field(
name=_strip_leading_underscore(field.name),
value=getattr(attachment, field.name),
type=field.type,
type=field.type, # type: ignore[arg-type]
description="",
read_only=_is_read_only(field.name),
required=False,
Expand Down

0 comments on commit 0cf717e

Please sign in to comment.