Skip to content

Commit 910d519

Browse files
mihowCopilot
andauthored
Fix spelling errors
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 1987314 commit 910d519

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ami/main/migrations/0065_project_default_filters_exclude_taxa_and_more.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Migration(migrations.Migration):
1717
field=models.ManyToManyField(
1818
blank=True,
1919
help_text="Taxa that are excluded by default in the occurrence filters and metrics. For example, 'Not a Moth'.",
20-
related_name="exlude_taxa_default_projects",
20+
related_name="exclude_taxa_default_projects",
2121
to="main.taxon",
2222
),
2323
),

ami/main/models_future/projects.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ class ProjectSettingsMixin(models.Model):
55
"""
66
User definable settings for projects.
77
8-
This is a mixin that will be flatten out into the final model.
9-
It allows us to organized user-defined project settings in their own class
8+
This is a mixin that will be flattened out into the final model.
9+
It allows us to organize user-defined project settings in their own class
1010
without needing to create a separate model.
1111
"""
1212

@@ -46,7 +46,7 @@ class ProjectSettingsMixin(models.Model):
4646

4747
default_filters_exclude_taxa = models.ManyToManyField(
4848
"Taxon",
49-
related_name="exlude_taxa_default_projects",
49+
related_name="exclude_taxa_default_projects",
5050
blank=True,
5151
help_text=(
5252
"Taxa that are excluded by default in the occurrence filters and metrics. " "For example, 'Not a Moth'."

0 commit comments

Comments
 (0)