Advertisement
tomdodd4598

Untitled

May 14th, 2021
1,127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. class ItemMethodContainer:
  2.     def insert_before(self, item, other):
  3.         raise NotImplementedError("Method not yet implemented!")
  4.    
  5.     def value_equals(self, item, value):
  6.         raise NotImplementedError("Method not yet implemented!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement