Skip to content

Commit

Permalink
fix(CornerShot): issue with _gen_next_tasks (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: sagiezero <61778471+sagiezero@users.noreply.github.com>
  • Loading branch information
sagiesec and sagiesec authored Jan 31, 2022
1 parent 9d9a87d commit 0e04801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cornershot/cornershot.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def _get_next_tasks(self,remaining):

else:
new_tasks = self.shot_list[0:remaining ]
self.shot_list = self.shot_list[remaining + 1:]
self.shot_list = self.shot_list[remaining:]

return new_tasks

Expand Down

0 comments on commit 0e04801

Please sign in to comment.