Skip to content

Commit

Permalink
fix flake8 error
Browse files Browse the repository at this point in the history
  • Loading branch information
manelclos committed May 12, 2020
1 parent 52bfd28 commit 325e090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class TagResource(models.Model):
)

def __str__(self):
return "%s - " % (self.kind, self.tag.slug)
return "%s - %s" % (self.kind, self.tag.slug)


# Test many to many with inlines and formsets
Expand Down

0 comments on commit 325e090

Please sign in to comment.