Skip to content

Commit

Permalink
Bump version to 1.0.5 and fix some GTK version and fix basic lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SoulRaven committed Jun 10, 2024
1 parent 3b64da4 commit 89365ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sgzenity/sgszenity.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def init_dialog(self):
# example: [1,2,3,4,5] -> (1,2,3), (4,5,'')
def group(items, nb_cols):
for i in range(0, len(items), nb_cols):
group = items[i:i + nb_cols]
group = items[i : i + nb_cols]
if len(group) == nb_cols:
yield (tuple(group))
else:
Expand Down

0 comments on commit 89365ee

Please sign in to comment.