summaryrefslogtreecommitdiff
path: root/django/db/migrations/executor.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-04 08:08:27 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:37:05 +0100
commit7119f40c9881666b6f9b5cf7df09ee1d21cc8344 (patch)
treefa50869f5614295f462d9bf77fec59365c621609 /django/db/migrations/executor.py
parent9c19aff7c7561e3a82978a272ecdaad40dda5c00 (diff)
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Diffstat (limited to 'django/db/migrations/executor.py')
-rw-r--r--django/db/migrations/executor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/migrations/executor.py b/django/db/migrations/executor.py
index ef7f9060f1..eb738cf457 100644
--- a/django/db/migrations/executor.py
+++ b/django/db/migrations/executor.py
@@ -405,6 +405,6 @@ class MigrationExecutor:
break
else:
return False, project_state
- # If we get this far and we found at least one CreateModel or AddField migration,
- # the migration is considered implicitly applied.
+ # If we get this far and we found at least one CreateModel or AddField
+ # migration, the migration is considered implicitly applied.
return (found_create_model_migration or found_add_field_migration), after_state