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,19 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('judge', '0094_submissiontestcase_unique_together'),
("judge", "0094_submissiontestcase_unique_together"),
]
operations = [
migrations.AddField(
model_name='organization',
name='logo_override_image',
field=models.CharField(blank=True, default='', help_text='This image will replace the default site logo for users viewing the organization.', max_length=150, verbose_name='Logo override image'),
model_name="organization",
name="logo_override_image",
field=models.CharField(
blank=True,
default="",
help_text="This image will replace the default site logo for users viewing the organization.",
max_length=150,
verbose_name="Logo override image",
),
),
]