Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yalef committed Nov 22, 2023
1 parent 069e0d8 commit c3aeb4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Migration(migrations.Migration):
name="force_import",
field=models.BooleanField(
default=False,
help_text="Import data with skip ivalid rows.",
help_text="Import data with skip invalid rows.",
verbose_name="Force import",
),
),
Expand Down
2 changes: 1 addition & 1 deletion import_export_extensions/models/import_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class ImportStatus(models.TextChoices):

force_import = models.BooleanField(
default=False,
help_text=_("Import data with skip ivalid rows."),
help_text=_("Import data with skip invalid rows."),
verbose_name=_("Force import"),
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_models/test_import/test_import_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def test_import_data_invalid_row_file(
new_artist: Artist,
force_import: bool,
):
"""Test import file with ivalid row.
"""Test import file with invalid row.
If force_import = False, then job must finish with `INPUT_ERROR`
and not create instances for correct rows.
Expand Down

0 comments on commit c3aeb4b

Please sign in to comment.