mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-03 02:12:22 +00:00
776 B
776 B
model-dunder-str (DJ008)
Derived from the flake8-django linter.
What it does
Checks that __str__
method is defined in Django models.
Why is this bad?
Django models should define __str__
method to return a string representation
of the model instance, as Django calls this method to display the object in
the Django Admin and elsewhere.
Models without __str__
method will display a non-meaningful representation
of the object in the Django Admin.
Example
from django.db import models
class MyModel(models.Model):
field = models.CharField(max_length=255)
Use instead:
from django.db import models
class MyModel(models.Model):
field = models.CharField(max_length=255)
def __str__(self):
return f"{self.field}"