Skip to content

Commit

Permalink
fix(migrations): reformat the migrations to please ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
zyv committed May 17, 2024
1 parent 62ca3ec commit f3231cf
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions logbook/migrations/0028_aircraft_v_fe.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@


class Migration(migrations.Migration):

dependencies = [
('logbook', '0027_aircraft_remarks'),
("logbook", "0027_aircraft_remarks"),
]

operations = [
migrations.AddField(
model_name='aircraft',
name='v_fe',
field=models.PositiveSmallIntegerField(blank=True, help_text='Flap extension speed', null=True, verbose_name='Vfe'),
model_name="aircraft",
name="v_fe",
field=models.PositiveSmallIntegerField(
blank=True,
help_text="Flap extension speed",
null=True,
verbose_name="Vfe",
),
),
]

0 comments on commit f3231cf

Please sign in to comment.