def finished()

in src/es_pii_tool/trackables.py [0:0]


    def finished(self) -> bool:
        """
        Check if a prior run was recorded for this step and log accordingly

        :returns: State of whether a prior run failed to complete
        """
        if self.completed:
            if self.job.dry_run:
                self.logger.info('DRY-RUN: Ignoring previous run of %s', self.stub)
            else:
                self.logger.info('%s was completed previously.', self.stub)
                return True
        if self.start_time:
            self.report_history()
            self.logger.warning('%s was not completed in a previous run.', self.stub)
        return False