Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. class Message(object):
  2.     def __init__(self, text):
  3.         self.message_text = text
  4.         self.valid_words = someFunction(words)
  5.  
  6. class PlaintextMessage(Message):
  7.     def __init__(self, text):
  8.         Message.__init__(self, text)
  9.         self.valid_words = someFunction(words)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement