Skip to content

Commit 703fe0e

Browse files
committed
Fix typos discovered by codespell
1 parent 2ff6207 commit 703fe0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

simple_history/management/commands/clean_duplicate_history.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class Command(populate_history.Command):
99
args = "<app.model app.model ...>"
1010
help = (
11-
"Scans HistoricalRecords for identical sequencial entries "
11+
"Scans HistoricalRecords for identical sequential entries "
1212
"(duplicates) in a model and deletes them."
1313
)
1414

simple_history/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ def post_delete(self, instance, using=None, **kwargs):
672672

673673
def pre_delete(self, instance, **kwargs):
674674
"""
675-
pre_delete method to ensure all deferred fileds are loaded on the model
675+
pre_delete method to ensure all deferred fields are loaded on the model
676676
"""
677677
# First check that history is enabled (on model and globally)
678678
if not getattr(settings, "SIMPLE_HISTORY_ENABLED", True):

0 commit comments

Comments
 (0)