mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
committed by
Mariusz Felisiak
parent
f68fa8b45d
commit
9c19aff7c7
@@ -18,10 +18,10 @@ class Thing(models.Model):
|
||||
alter = models.CharField(max_length=1)
|
||||
having = models.CharField(max_length=1)
|
||||
where = models.DateField(max_length=1)
|
||||
has_hyphen = models.CharField(max_length=1, db_column='has-hyphen')
|
||||
has_hyphen = models.CharField(max_length=1, db_column="has-hyphen")
|
||||
|
||||
class Meta:
|
||||
db_table = 'select'
|
||||
db_table = "select"
|
||||
|
||||
def __str__(self):
|
||||
return self.when
|
||||
|
||||
Reference in New Issue
Block a user