Reformat using black

This commit is contained in:
cuom1999 2022-05-14 12:57:27 -05:00
parent efee4ad081
commit a87fb49918
221 changed files with 19127 additions and 7310 deletions

View file

@ -6,13 +6,18 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('judge', '0121_auto_20220415_0135'),
("judge", "0121_auto_20220415_0135"),
]
operations = [
migrations.AlterField(
model_name='contest',
name='time_limit',
field=models.DurationField(blank=True, help_text='Format hh:mm:ss. For example, if you want a 2-hour contest, enter 02:00:00', null=True, verbose_name='time limit'),
model_name="contest",
name="time_limit",
field=models.DurationField(
blank=True,
help_text="Format hh:mm:ss. For example, if you want a 2-hour contest, enter 02:00:00",
null=True,
verbose_name="time limit",
),
),
]