Skip to content

Instantly share code, notes, and snippets.

@talfco
Last active February 10, 2019 21:58
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
...
@abstractmethod
def _get_active(self,dict):
pass
@abstractmethod
def _get_id(self,dict):
pass
@abstractmethod
def _get_last_name(self,dict):
pass
@abstractmethod
def _get_first_name(self,dict):
pass
def _get_middle_name(self,dict):
pass
def _get_party(self,dict):
return ''
def _get_council(self,dict):
return ''
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment