Skip to content

Commit

Permalink
Removed unneccessary comments, refs #443
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jun 18, 2024
1 parent 6354c20 commit 1a56b62
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions blog/migrations/0020_tag_description.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Generated by Django A.B on YYYY-MM-DD HH:MM

from django.db import migrations, models


Expand Down
2 changes: 1 addition & 1 deletion blog/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

class Tag(models.Model):
tag = models.SlugField(unique=True)
description = models.TextField(blank=True) # Added description field
description = models.TextField(blank=True)

def __str__(self):
return self.tag
Expand Down

0 comments on commit 1a56b62

Please sign in to comment.