Skip to content

Commit

Permalink
chore: remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
provos committed Jun 14, 2024
1 parent 083f7fc commit 6ccaf6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ def update_slices(ignored_data, filename):

img_container = []
assert len(state.image_slices) == len(state.image_slices_filenames)
for i, img_slice in enumerate(state.image_slices):
for i in range(len(state.image_slices)):
img_data = state.serve_slice_image(i)

left_color = caret_color_enabled if state.can_undo(
Expand Down

0 comments on commit 6ccaf6d

Please sign in to comment.