예제 #1
0
    def as_str(self, prefix=""):
        """
        Return the report as a string

        :return: The string
        """
        return "\n".join([table.as_str(prefix) for table in self.tables])
예제 #2
0
    def as_str(self, prefix=''):
        '''
    Return the report as a string

    :return: The string

    '''
        return '\n'.join([table.as_str(prefix) for table in self.tables])
예제 #3
0
파일: report.py 프로젝트: biochem-fan/dials
  def as_str(self, prefix=''):
    '''
    Return the report as a string

    :return: The string

    '''
    return '\n'.join([table.as_str(prefix) for table in self.tables])