Reformat using black
This commit is contained in:
parent
efee4ad081
commit
a87fb49918
221 changed files with 19127 additions and 7310 deletions
|
@ -6,18 +6,26 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('judge', '0096_profile_language_set_default'),
|
||||
("judge", "0096_profile_language_set_default"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='contestparticipation',
|
||||
name='is_disqualified',
|
||||
field=models.BooleanField(default=False, help_text='Whether this participation is disqualified.', verbose_name='is disqualified'),
|
||||
model_name="contestparticipation",
|
||||
name="is_disqualified",
|
||||
field=models.BooleanField(
|
||||
default=False,
|
||||
help_text="Whether this participation is disqualified.",
|
||||
verbose_name="is disqualified",
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='contestparticipation',
|
||||
name='virtual',
|
||||
field=models.IntegerField(default=0, help_text='0 means non-virtual, otherwise the n-th virtual participation.', verbose_name='virtual participation id'),
|
||||
model_name="contestparticipation",
|
||||
name="virtual",
|
||||
field=models.IntegerField(
|
||||
default=0,
|
||||
help_text="0 means non-virtual, otherwise the n-th virtual participation.",
|
||||
verbose_name="virtual participation id",
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue