ynop / audiomate

Missing module/function docstring PY-D0003
Documentation
Minor
4 occurrences in this check
Docstring missing for _load
 77    def _check_for_missing_files(self, path):
 78        return []
 79
 80    def _load(self, path): 81        corpus = audiomate.Corpus(path=path)
 82        subset_ids = CommonVoiceReader.get_subset_ids(path)
 83
Docstring missing for _check_for_missing_files
 74    def type(cls):
 75        return 'common-voice'
 76
 77    def _check_for_missing_files(self, path): 78        return []
 79
 80    def _load(self, path):
Docstring missing for type
 71    """
 72
 73    @classmethod
 74    def type(cls): 75        return 'common-voice'
 76
 77    def _check_for_missing_files(self, path):
Docstring missing for type
 56        )
 57
 58    @classmethod
 59    def type(cls): 60        return 'common-voice'
 61
 62