Skip to content

Commit eda8146

Browse files
committed
fix: ignore some new ty errors
1 parent abe167a commit eda8146

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pycaputo/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ def stringify(v: Any) -> str:
917917
if not isinstance(dc, dict):
918918
header_attrs.append(("class", type(dc).__name__))
919919
if "name" in fields:
920-
header_attrs.append(("name", fields["name"]))
920+
header_attrs.append(("name", fields["name"])) # ty: ignore[invalid-argument-type]
921921
if not header_attrs:
922922
header_attrs.append(("attribute", "value"))
923923
else:

0 commit comments

Comments
 (0)