summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorArkadiusz Adamski <ar4s@users.noreply.github.com>2017-01-21 13:40:33 +0100
committerTim Graham <timograham@gmail.com>2017-01-21 07:40:33 -0500
commita76d12ceb437a68efb6a19a588fb29a7a0e5a5e2 (patch)
treeadf957c3ebb9c08078b0d6d8792286b4f11d5dc8 /docs/ref
parent503e944ac792498e7b38c799d8e4b06f74e9d65a (diff)
Removed unused imports in example migrations.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/migration-operations.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/migration-operations.txt b/docs/ref/migration-operations.txt
index e6e6f73a99..a977317a80 100644
--- a/docs/ref/migration-operations.txt
+++ b/docs/ref/migration-operations.txt
@@ -310,7 +310,7 @@ class in the migration file, and just pass it to ``RunPython``. Here's an
example of using ``RunPython`` to create some initial objects on a ``Country``
model::
- from django.db import migrations, models
+ from django.db import migrations
def forwards_func(apps, schema_editor):
# We get the model from the versioned app registry;