Guest User

Untitled

a guest
Jun 20th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. def redo(self): #returns nothing
  2. '''
  3. @todo: Implement me!
  4. '''
  5.  
  6. if track.sections.count() > 0:
  7. track.sections.remove(self.index)
  8.  
  9. def undo(self): # returns nothing
  10. '''
  11. @todo: Implement me!
  12. '''
  13.  
  14. track.sections.insert(self.index)
  15.  
  16. def execute(self): #returns nothing
  17. '''
  18. @todo: Implement me!
  19. '''
  20. if track.sections.count() > 0:
  21. track.sections.remove(self.index)
Add Comment
Please, Sign In to add comment