Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Dan D'Avella <[email protected]>
  • Loading branch information
clavedeluna and drdavella committed Feb 28, 2024
1 parent 93d81b9 commit ef37526
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core_codemods/django_model_without_dunder_str.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def dunder_str_method() -> cst.FunctionDef:
DjangoModelWithoutDunderStr = CoreCodemod(
metadata=Metadata(
name="django-model-without-dunder-str",
summary="Ensure Django Model Classes Implement A `__str__` Method",
summary="Ensure Django Model Classes Implement a `__str__` Method",
review_guidance=ReviewGuidance.MERGE_AFTER_REVIEW,
references=[
Reference(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
If you've ever actively developed or debugged a Django application, you may have noticed Django models and their instances can sometimes be hard to read or distinguish one instance from another. Loading models in the interactive Django console or viewing them in the admin interface can be puzzling. This is because Django is trying to display your model objects as a plain strings.
If you've ever actively developed or debugged a Django application, you may have noticed that the string representations of Django models and their instances can sometimes be hard to read or to distinguish from one another. Loading models in the interactive Django console or viewing them in the admin interface can be puzzling. This is because the default string representation of Django models is fairly generic.

We've written this codemod to make your model objects human-readable. It will automatically detect all of your model's fields and display them as a nice string.
This codemod is intended to make the string representation of your model objects more human-readable. It will automatically detect all of your model's fields and display them as a descriptive string.

For example, the `Question` model from Django's popular Poll App tutorial will look like this:
For example, the default string representation of the `Question` model from Django's popular Poll App tutorial looks like this:
```diff
from django.db import models

Expand All @@ -16,7 +16,7 @@ class Question(models.Model):
+ return f"{model_name}({fields_str})"
```

Without this change, the `Question` objects look like this in the interactive Django shell:
Without this change, the string representation of `Question` objects look like this in the interactive Django shell:
```
>>> Question.objects.all()
<QuerySet [<Question: Question object (1)>]>
Expand Down

0 comments on commit ef37526

Please sign in to comment.