mirror of
https://github.com/beetbox/beets.git
synced 2025-12-16 05:34:47 +01:00
artresizer: add a comment to clarify the meaning of class variables
This commit is contained in:
parent
b76a3fcaa4
commit
40b3dd7152
1 changed files with 4 additions and 0 deletions
|
|
@ -76,6 +76,10 @@ class LocalBackend:
|
|||
|
||||
class IMBackend(LocalBackend):
|
||||
NAME = "ImageMagick"
|
||||
|
||||
# These fields are used as a cache for `version()`. `_legacy` indicates
|
||||
# whether the modern `magick` binary is available or whether to fall back
|
||||
# to the old-style `convert`, `identify`, etc. commands.
|
||||
_version = None
|
||||
_legacy = None
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue