Skip to content

Commit

Permalink
Formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurswag committed Sep 13, 2024
1 parent a9fb476 commit 6a53df2
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions backend/core/migrations/0026_appliedcontrol_cost.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@


class Migration(migrations.Migration):

dependencies = [
('core', '0025_complianceassessment_folder_riskassessment_folder_and_more'),
("core", "0025_complianceassessment_folder_riskassessment_folder_and_more"),
]

operations = [
migrations.AddField(
model_name='appliedcontrol',
name='cost',
field=models.FloatField(help_text='Cost of the measure (using globally-chosen currency)', null=True, verbose_name='Cost'),
model_name="appliedcontrol",
name="cost",
field=models.FloatField(
help_text="Cost of the measure (using globally-chosen currency)",
null=True,
verbose_name="Cost",
),
),
]

0 comments on commit 6a53df2

Please sign in to comment.