WeblateOrg / weblate

Missing class docstring PY-D0002
Documentation
Minor
5 occurrences in this check
Docstring missing for class Translation
 130        )
 131
 132
 133class Translation(models.Model, URLMixin, LoggerMixin, CacheKeyMixin): 134    component = models.ForeignKey(
 135        "trans.Component", on_delete=models.deletion.CASCADE, db_index=False
 136    )
Docstring missing for class TranslationQuerySet
  88        return translation
  89
  90
  91class TranslationQuerySet(models.QuerySet):  92    def prefetch(self):
  93        from weblate.trans.models import Alert, Component
  94
Docstring missing for class TranslationManager
  61    from weblate.auth.models import User
  62
  63
  64class TranslationManager(models.Manager):  65    def check_sync(
  66        self, component, lang, code, path, force=False, request=None, change=None
  67    ):
 7from django.db import migrations, models
 8
 9
10class Migration(migrations.Migration):11    dependencies = [
12        ("trans", "0014_alter_component_repoweb_alter_project_web"),
13    ]
Docstring missing for class I18NextV4Exporter
464    storage_class = JsonNestedFile
465
466
467class I18NextV4Exporter(JSONExporter):468    name = "i18nextv4"
469    verbose = gettext_lazy("i18next v4 file")
470    storage_class = I18NextV4File