Closed valmar closed 4 years ago
The example in the README reads:
bg = geom.to_basisgrid() for g in bg.num_grids: print(bg.get_grid(g)
But it should be:
bg = geom.to_basisgrid() for g in range(bg.num_grids): print(bg.get_grid(g)
@tjlane I will go ahead and fix this myself
The example in the README reads:
bg = geom.to_basisgrid() for g in bg.num_grids: print(bg.get_grid(g)
But it should be:
bg = geom.to_basisgrid() for g in range(bg.num_grids): print(bg.get_grid(g)