Skip to content

Instantly share code, notes, and snippets.

@talfco
Last active February 10, 2019 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talfco/9bc3e30fce652a46eec55bc5a2dce25c to your computer and use it in GitHub Desktop.
Save talfco/9bc3e30fce652a46eec55bc5a2dce25c to your computer and use it in GitHub Desktop.
...
@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