Skip to content

Commit

Permalink
resolve typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvin-muchiri committed Apr 24, 2024
1 parent 4526028 commit 7c6b81c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def populate_attachment_xform(apps, schema_editor):
print("Done populating attachment xform!")


def reverse_populate_attachement_xform(apps, schema_editor):
def reverse_populate_attachment_xform(apps, schema_editor):
Attachment = apps.get_model("logger", "Attachment")
queryset = Attachment.objects.filter(xform__isnull=False).values("pk")

Expand All @@ -44,6 +44,6 @@ class Migration(migrations.Migration):

operations = [
migrations.RunPython(
populate_attachment_xform, reverse_populate_attachement_xform
populate_attachment_xform, reverse_populate_attachment_xform
)
]

0 comments on commit 7c6b81c

Please sign in to comment.