Skip to content

Commit c859872

Browse files
committed
Make ruff happy
1 parent fe7693d commit c859872

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dynamic_stack_decider/dynamic_stack_decider/abstract_stack_element.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def pop(self):
5252
"""
5353
self._dsd.pop()
5454

55-
def on_pop(self):
55+
def on_pop(self): # noqa
5656
"""
5757
This method is called when the element is popped from the stack.
5858
It can be used to clean up resources, cancel actions or similar tasks.

dynamic_stack_decider/dynamic_stack_decider/sequence_element.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def pop_one(self):
7676
def on_pop(self):
7777
"""
7878
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
79+
This means that the last element of the sequence was also popped, so
8080
"""
8181
self.current_action.on_pop()
8282

0 commit comments

Comments
 (0)