Skip to content
Snippets Groups Projects
Commit 367f5008 authored by Laurin Söding's avatar Laurin Söding
Browse files

flatten->ravel

parent ca8818d9
No related branches found
No related tags found
1 merge request!983BrokenLogarithmicGrid & minor fixes and adjustments
......@@ -116,7 +116,7 @@ class HEALPixGrid(Grid):
assert shape0 is None or isinstance(shape0, (int, tuple, np.ndarray))
if shape0 is not None:
shape0 = np.asarray(shape0).flatten()
shape0 = np.asarray(shape0).ravel()
assert (
shape0.size == 1
), "shape0 must be a scalar or a single-element array/tuple"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment