We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe7693d commit c859872Copy full SHA for c859872
dynamic_stack_decider/dynamic_stack_decider/abstract_stack_element.py
@@ -52,7 +52,7 @@ def pop(self):
52
"""
53
self._dsd.pop()
54
55
- def on_pop(self):
+ def on_pop(self): # noqa
56
57
This method is called when the element is popped from the stack.
58
It can be used to clean up resources, cancel actions or similar tasks.
dynamic_stack_decider/dynamic_stack_decider/sequence_element.py
@@ -76,7 +76,7 @@ def pop_one(self):
76
def on_pop(self):
77
78
This method is called when the sequence is popped from the stack.
79
- This means that the last element of the sequence was also popped, so
+ This means that the last element of the sequence was also popped, so
80
81
self.current_action.on_pop()
82
0 commit comments