op8867555

Untitled

Jun 8th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. class Party:
  2.     location: str
  3.     def method():
  4.         pass
  5.  
  6. class Person(Party):
  7.     pass
  8.  
  9. class Organization(Party):
  10.     members: List[Person]
  11.     sub_org: List[Organization]
  12.     # ^ this won't actually work because python doesn't support
  13.     #   self-referential type hints.
Advertisement
Add Comment
Please, Sign In to add comment