ynop / audiomate

Missing module/function docstring PY-D0003
Documentation
Minor
7 occurrences in this check
Docstring missing for callback
112
113    bytes_at_last_log = 0
114
115    def callback(x):116        nonlocal bytes_at_last_log
117
118        if x.total_downloaded - bytes_at_last_log >= PROGRESS_LOGGER_BYTE_DELAY:
Docstring missing for type
 44        )
 45
 46    @classmethod
 47    def type(cls): 48        return 'swc'
 49
 50
Docstring missing for type
 52    """ Reader for the Spoken Wikipedia Corpus. """
 53
 54    @classmethod
 55    def type(cls): 56        return 'swc'
 57
 58    def _check_for_missing_files(self, path):
Docstring missing for _check_for_missing_files
 55    def type(cls):
 56        return 'swc'
 57
 58    def _check_for_missing_files(self, path): 59        return []
 60
 61    def _load(self, path):
Docstring missing for _load
 58    def _check_for_missing_files(self, path):
 59        return []
 60
 61    def _load(self, path): 62        corpus = audiomate.Corpus()
 63
 64        article_paths = sorted(self.get_articles(path))
Docstring missing for parse_element
241
242        return segments
243
244    def parse_element(self, parent):245        segments = []
246
247        for c in parent:
Docstring missing for parse_sentence
254
255        return segments
256
257    def parse_sentence(self, element):258        tokens = []
259
260        for index, token in enumerate(element):