Thanks to visit codestin.com Credit goes to github.com
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 4520cba commit 3b8662eCopy full SHA for 3b8662e
data_prototype/tests/test_containers.py
@@ -22,7 +22,6 @@ def _verify_describe(container):
22
assert set(data) == set(desc)
23
for k, v in data.items():
24
assert v.shape == desc[k].shape
25
- assert v.dtype == desc[k].dtype
26
27
28
def test_array_describe(ac):
examples/units.py
@@ -63,7 +63,7 @@
63
lw = Line(cont, [xconv, yconv])
64
65
ax.add_artist(lw)
66
-nax.xaxis.set_units(ureg.feet)
67
-nax.yaxis.set_units(ureg.m)
+nax.xaxis.set_units(ureg.m)
+nax.yaxis.set_units(ureg.cm)
68
69
plt.show()
0 commit comments