Skip to content

Commit

Permalink
Fix other black files
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuckley committed Nov 22, 2024
1 parent 576f96a commit 3b6e6e0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions tests/data/create_old_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def create_interp_data():
]

outputs = []
for (shape, klength, is_complex) in test_params:
for shape, klength, is_complex in test_params:
torch.manual_seed(123)
im_size = shape[2:-1]

Expand Down Expand Up @@ -74,7 +74,7 @@ def create_nufft_data():
]

outputs = []
for (shape, klength, is_complex) in test_params:
for shape, klength, is_complex in test_params:
torch.manual_seed(123)
im_size = shape[2:-1]

Expand Down Expand Up @@ -128,7 +128,7 @@ def create_sense_nufft_data():
]

outputs = []
for (shape, klength, is_complex) in test_params:
for shape, klength, is_complex in test_params:
torch.manual_seed(123)
im_size = shape[2:-1]

Expand Down
2 changes: 1 addition & 1 deletion tests/test_interp.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test_interp_accuracy():
with open("tests/data/interp_data.pkl", "rb") as f:
old_data = pickle.load(f)

for (image, ktraj, old_kdata) in old_data:
for image, ktraj, old_kdata in old_data:
im_size = image.shape[2:-1]

forw_ob = tkbn.KbInterp(im_size=im_size, grid_size=im_size)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_nufft.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_nufft_accuracy():
with open("tests/data/nufft_data.pkl", "rb") as f:
old_data = pickle.load(f)

for (image, ktraj, old_kdata) in old_data:
for image, ktraj, old_kdata in old_data:
im_size = image.shape[2:-1]

forw_ob = tkbn.KbNufft(im_size=im_size)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sense_nufft.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_sense_nufft_accuracy():
with open("tests/data/sense_nufft_data.pkl", "rb") as f:
old_data = pickle.load(f)

for (image, ktraj, smaps, old_kdata) in old_data:
for image, ktraj, smaps, old_kdata in old_data:
im_size = image.shape[2:-1]

forw_ob = tkbn.KbNufft(im_size=im_size)
Expand Down

0 comments on commit 3b6e6e0

Please sign in to comment.