summaryrefslogtreecommitdiff
path: root/tests/forms_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-10-10 11:07:48 -0400
committerTim Graham <timograham@gmail.com>2013-10-10 11:09:42 -0400
commitadedc310729f7b1ca182b7b38d7d47550ae3e89d (patch)
tree89ae4ff6019d24d7ffb1e14ea3ae860c8522d31f /tests/forms_tests
parentcec11a3336c730e6dc2f1966fee749cc830e97c0 (diff)
Fixed "redefinition of unused 'foo' from line X" pyflakes warnings.
Diffstat (limited to 'tests/forms_tests')
-rw-r--r--tests/forms_tests/tests/test_media.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/forms_tests/tests/test_media.py b/tests/forms_tests/tests/test_media.py
index c492a1e539..7061759bc3 100644
--- a/tests/forms_tests/tests/test_media.py
+++ b/tests/forms_tests/tests/test_media.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-from django.forms import TextInput, Media, TextInput, CharField, Form, MultiWidget
+from django.forms import Media, TextInput, CharField, Form, MultiWidget
from django.template import Template, Context
from django.test import TestCase
from django.test.utils import override_settings