We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1081598 commit 2196a44Copy full SHA for 2196a44
tests/compas/colors/test_colordict.py
@@ -36,7 +36,7 @@ def test_colordict_json():
36
cd1[1] = Color.blue()
37
cd1[(1, 0)] = Color.green()
38
39
- cd2: ColorDict = compas.json_loads(compas.json_dumps(cd1)) # type: ignore
+ cd2 = compas.json_loads(compas.json_dumps(cd1))
40
41
assert cd2[1] == Color.blue()
42
assert cd2["1"] == Color.blue()
0 commit comments