Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
andykee committed Nov 26, 2024
1 parent 654ac74 commit 2733c36
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lentil/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ def subarray(a, shape, shift=(0,0)):
rmax = rmin + shape[0]
cmax = cmin + shape[1]

print(rmin, rmax, cmin, cmax)

if any((rmin<0, cmin<0, rmax>a.shape[0], cmax>a.shape[1])):
raise ValueError('window lies outside of array')

Expand Down

0 comments on commit 2733c36

Please sign in to comment.