Skip to content
Snippets Groups Projects
Commit 81798166 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Re-fix doctest tracking prior commit

parent cd8a77ee
No related branches found
No related tags found
No related merge requests found
......@@ -227,9 +227,9 @@ inspect that code, too, using :attr:`loopy.Options.write_wrapper`:
<BLANKLINE>
if n is None:
if a is not None:
n = int(a.shape[0])
n = a.shape[0]
elif out is not None:
n = int(out.shape[0])
n = out.shape[0]
<BLANKLINE>
# }}}
...
......
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