Advertisement
clairec

Untitled

Jun 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. class Foo:
  2.     def __init__(self) -> None:
  3.         raise NotImplementedError
  4.  
  5. class Bar(Foo):
  6.     def __init__(self, name: str) -> None:
  7.         self.name: str = name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement