Reformat using black
This commit is contained in:
parent
efee4ad081
commit
a87fb49918
221 changed files with 19127 additions and 7310 deletions
|
@ -6,18 +6,28 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('judge', '0085_submission_source'),
|
||||
("judge", "0085_submission_source"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='contest',
|
||||
name='rating_ceiling',
|
||||
field=models.IntegerField(blank=True, help_text='Rating ceiling for contest', null=True, verbose_name='rating ceiling'),
|
||||
model_name="contest",
|
||||
name="rating_ceiling",
|
||||
field=models.IntegerField(
|
||||
blank=True,
|
||||
help_text="Rating ceiling for contest",
|
||||
null=True,
|
||||
verbose_name="rating ceiling",
|
||||
),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='contest',
|
||||
name='rating_floor',
|
||||
field=models.IntegerField(blank=True, help_text='Rating floor for contest', null=True, verbose_name='rating floor'),
|
||||
model_name="contest",
|
||||
name="rating_floor",
|
||||
field=models.IntegerField(
|
||||
blank=True,
|
||||
help_text="Rating floor for contest",
|
||||
null=True,
|
||||
verbose_name="rating floor",
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue