Skip to content

Commit

Permalink
fix: self.current_item_ancestors init's as empty list
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoStorm96 committed Oct 1, 2024
1 parent 35c7e74 commit dc1dec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proposals/utils/stepper.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(
# which item is current
self.request = request
self.items = []
self.current_item_ancestors = None
self.current_item_ancestors = []

self.check_all(self.starting_checkers)

Expand Down

0 comments on commit dc1dec1

Please sign in to comment.