Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
raccube committed Apr 10, 2024
1 parent 306a6b7 commit 3cd9fa3
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,18 @@


class Migration(migrations.Migration):

dependencies = [
('teams', '0004_add_team_comment'),
("teams", "0004_add_team_comment"),
]

operations = [
migrations.AlterModelOptions(
name='team',
options={'ordering': ['tla']},
name="team",
options={"ordering": ["tla"]},
),
migrations.AlterField(
model_name='team',
name='pit_location',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, to='teams.teampitlocation'),
model_name="team",
name="pit_location",
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, to="teams.teampitlocation"),
),
]

0 comments on commit 3cd9fa3

Please sign in to comment.