Skip to content

Commit

Permalink
Fixed indentation errors in test_base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewHerzing committed Jul 16, 2024
1 parent 68ede97 commit b466980
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tomotools/tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def test_stack_normalize(self):
assert norm.data.min() == 0.0

def test_stack_invert(self):
im = np.zeros([10,100,100])
im[:,40:60,40:60] = 10
im = np.zeros([10, 100, 100])
im[:, 40:60, 40:60] = 10
stack = CommonStack(im)
invert = stack.invert()
hist, bins = np.histogram(stack.data)
Expand Down

0 comments on commit b466980

Please sign in to comment.