Skip to content

Commit

Permalink
chore: fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsCalebJones committed Jul 29, 2024
1 parent 002ba91 commit b0eccb2
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,17 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name="nationality",
name="flag",
field=models.FileField(storage=sln_custom_storages.AppImageStorage, upload_to=app.models.language_image_path),
field=models.FileField(
storage=sln_custom_storages.AppImageStorage,
upload_to=app.models.language_image_path
),
),
migrations.AlterField(
model_name="staff",
name="profile",
field=models.FileField(storage=sln_custom_storages.AppImageStorage, upload_to=app.models.profile_image_path),
field=models.FileField(
storage=sln_custom_storages.AppImageStorage,
upload_to=app.models.profile_image_path
),
),
]

0 comments on commit b0eccb2

Please sign in to comment.