Guest User

Untitled

a guest
Nov 20th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class A():
  2. def __init__(self):
  3. #some init code
  4.  
  5. def method1(self):
  6. # some code
  7.  
  8. my_var = self.my_function(param1, param2)
  9. return my_var
  10.  
  11. class B(A):
  12. def __init__(self):
  13. #some init code
  14. self.my_function1 = SomeClass
Add Comment
Please, Sign In to add comment