mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 05:40:25 +00:00
- `base`, `crop`, `resize`, and `utils` are now placed in `pilkit` app - remove magic compatibility between `imagekit.processors` and `pilkit.procesors`
7 lines
257 B
Python
7 lines
257 B
Python
import warnings
|
|
|
|
from pilkit.processors.base import *
|
|
|
|
warnings.warn('imagekit.processors.base is deprecated use imagekit.processors instead', DeprecationWarning)
|
|
|
|
__all__ = ['ProcessorPipeline', 'Adjust', 'Reflection', 'Transpose', 'Anchor', 'MakeOpaque']
|