Skip to content

Commit

Permalink
PEP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
omerbt committed Oct 3, 2020
1 parent f924a46 commit 36efb84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ark/utils/data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def stitch_images(data_xr, num_cols):
for row in range(num_rows):
for col in range(num_cols):
stitched_data[0, row * row_len:(row + 1) * row_len,
col * col_len:(col + 1) * col_len, :] = data_xr[img_idx, ...]
col * col_len:(col + 1) * col_len, :] = data_xr[img_idx, ...]
img_idx += 1
if img_idx == num_imgs:
break
Expand Down

0 comments on commit 36efb84

Please sign in to comment.