spelling: deduplications

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2023-04-04 11:13:06 -04:00
parent 9cad11b2b3
commit 45a1457a4f
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ class Command(BaseCommand):
help = "merges duplicate book data"
# pylint: disable=no-self-use,unused-argument
def handle(self, *args, **options):
"""run deudplications"""
"""run deduplications"""
dedupe_model(models.Edition)
dedupe_model(models.Work)
dedupe_model(models.Author)

View file

@ -38,5 +38,5 @@ class Command(BaseCommand):
help = "merges duplicate book data"
# pylint: disable=no-self-use,unused-argument
def handle(self, *args, **options):
"""run deudplications"""
"""run deduplications"""
remove_editions()