Closed aiolasimone closed 6 years ago
In curvedsky.rand_map(), the len(shape) check fails with previously working and tested script. The current implementation fails due to logic ordering, which worked before with assert(). This small pull request should fix it.
curvedsky.rand_map()
len(shape)
assert()
In
curvedsky.rand_map()
, thelen(shape)
check fails with previously working and tested script. The current implementation fails due to logic ordering, which worked before withassert()
. This small pull request should fix it.