This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
@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