Removed unused __str__() methods in tests models.

Follow up to 6461583b6c.
This commit is contained in:
Mariusz Felisiak 2020-04-30 09:13:23 +02:00 committed by GitHub
parent bb13711451
commit 555e3a848e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 2 additions and 400 deletions

View file

@ -12,6 +12,3 @@ class Employee(models.Model):
hire_date = models.DateField(blank=False, null=False)
age = models.IntegerField(blank=False, null=False)
classification = models.ForeignKey('Classification', on_delete=models.CASCADE, null=True)
def __str__(self):
return '{}, {}, {}, {}'.format(self.name, self.department, self.salary, self.hire_date)