artresizer: add a comment to clarify the meaning of class variables

This commit is contained in:
wisp3rwind 2022-03-22 21:22:08 +01:00
parent b76a3fcaa4
commit 40b3dd7152

View file

@ -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