src/es_pii_tool/job.py [217:227]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            contents[val] = getattr(self, val)
        self.status = contents

    def build_doc(self) -> t.Dict:
        """Build the dictionary which will be the written to the tracking doc

        :returns: The tracking doc dictionary
        """
        doc = {}
        self.update_status()
        for key in self.ATTRLIST:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/es_pii_tool/trackables.py [217:228]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                contents[val] = getattr(self, val)
        self.status = contents
        # self.logger.debug('Updated status: %s', self.status)

    def build_doc(self) -> t.Dict:
        """Build the dictionary which will be the written to the tracking doc

        :returns: The tracking doc dictionary
        """
        doc = {}
        self.update_status()
        for key in self.ATTRLIST:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



