Skip to content

Commit 2196a44

Browse files
committed
ipy
1 parent 1081598 commit 2196a44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/compas/colors/test_colordict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_colordict_json():
3636
cd1[1] = Color.blue()
3737
cd1[(1, 0)] = Color.green()
3838

39-
cd2: ColorDict = compas.json_loads(compas.json_dumps(cd1)) # type: ignore
39+
cd2 = compas.json_loads(compas.json_dumps(cd1))
4040

4141
assert cd2[1] == Color.blue()
4242
assert cd2["1"] == Color.blue()

0 commit comments

Comments
 (0)