refactor!: stop using import_shims

Attempting to import packages from
lms/djangoapps, cms/djangoapps, or common/djangoapps
as if they are import roots will now
simply raise ImportErrors (like any other invalid
import) instead of DeprecatedEdxPlatformImportError.

See docs/decisions/0007-sys-path-modification-removal.rst
for more details.
This commit is contained in:
Kyle McCormick
2020-12-22 14:40:17 -05:00
committed by Kyle McCormick
parent f92740b39f
commit 4531e15519
3 changed files with 0 additions and 11 deletions

View File

@@ -30,7 +30,6 @@ SKIP_DIRS = (
'spec',
'test_root',
'vendor',
'import_shims',
)