Skip to content

Commit 09aeceb

Browse files
reindervdw-cmiReinderVosDeWael
authored andcommitted
fix: fix mypy
1 parent 145ccb8 commit 09aeceb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/llm/test_llm_unit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ModelPrimitive(pydantic.BaseModel):
1313
var1: int = 1
1414
var2: float = 2.0
1515
var3: str = "a"
16-
var4: list[str] = ("a",)
16+
var4: list[str] = ("a",) # type: ignore[assignment]
1717

1818

1919
class ModelRecursive(pydantic.BaseModel):

0 commit comments

Comments
 (0)