More and more fixes.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2021-10-04 15:46:00 -04:00
parent 459719c21e
commit ed93d324a8
4 changed files with 5 additions and 4 deletions

View File

@@ -78,7 +78,7 @@ def test_dict(dummyannotations: dict[str, typing.Any]) -> None:
def test_load(dummydict: base.DataDict, dummyobj: Dummy) -> None:
"""Validate that <data class>.load() works."""
result = Dummy.load(dummydict)
result: Dummy = Dummy.load(dummydict)
assert result == dummyobj