mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
proper python comments in readme
This commit is contained in:
parent
d1e1e67d4f
commit
9592edb186
1 changed files with 2 additions and 2 deletions
|
|
@ -67,14 +67,14 @@ Create your specifications.
|
|||
|
||||
# now we can define our thumbnail spec
|
||||
class Thumbnail(ImageSpec):
|
||||
quality = 90 // defaults to 70
|
||||
quality = 90 # defaults to 70
|
||||
access_as = 'thumbnail_image'
|
||||
pre_cache = True
|
||||
processors = [ResizeThumb, EnchanceThumb]
|
||||
|
||||
# and our display spec
|
||||
class Display(ImageSpec):
|
||||
quality = 90 // defaults to 70
|
||||
quality = 90 # defaults to 70
|
||||
increment_count = True
|
||||
processors = [ResizeDisplay]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue