diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-18 07:25:30 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-11-02 15:24:56 -0400 |
| commit | 36ded01527b690b5df0574492af9cfcc2ea3d1dc (patch) | |
| tree | 107e2f542034f13810496fd389972f856efc33f3 /tests/utils_tests/test_module_loading.py | |
| parent | 9f76ea1eaad0db0183fa3b5bade16392db0cafbd (diff) | |
Fixed #21302 -- Fixed unused imports and import *.
Diffstat (limited to 'tests/utils_tests/test_module_loading.py')
| -rw-r--r-- | tests/utils_tests/test_module_loading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils_tests/test_module_loading.py b/tests/utils_tests/test_module_loading.py index d808ab8783..1886631006 100644 --- a/tests/utils_tests/test_module_loading.py +++ b/tests/utils_tests/test_module_loading.py @@ -44,7 +44,7 @@ class DefaultLoader(unittest.TestCase): self.assertRaises(ImportError, import_module, 'utils_tests.test_module.django') # Don't be confused by caching of import misses - import types # causes attempted import of utils_tests.types + import types # NOQA: causes attempted import of utils_tests.types self.assertFalse(module_has_submodule(sys.modules['utils_tests'], 'types')) # A module which doesn't have a __path__ (so no submodules) |
