Skip to content

Commit

Permalink
[pre-commit] fixes from hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jan 3, 2024
1 parent a1b3c58 commit aa763fb
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions backend/common/migrations/0011_alter_duty_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,23 @@


class Migration(migrations.Migration):

dependencies = [
('common', '0010_principalinvestigator_email'),
("common", "0010_principalinvestigator_email"),
]

operations = [
migrations.AlterField(
model_name='duty',
name='platform',
field=models.CharField(choices=[('short', 'Short'), ('long', 'Long'), ('shortlong', 'Short + Long')], default='short', max_length=15, verbose_name='Platform'),
model_name="duty",
name="platform",
field=models.CharField(
choices=[
("short", "Short"),
("long", "Long"),
("shortlong", "Short + Long"),
],
default="short",
max_length=15,
verbose_name="Platform",
),
),
]

0 comments on commit aa763fb

Please sign in to comment.