fetchart: make Candidate a new-style class

This commit is contained in:
wordofglass 2016-04-14 15:27:47 +02:00
parent de3e91db87
commit 6bc3fb8f67

View file

@ -42,7 +42,7 @@ CONTENT_TYPES = ('image/jpeg', 'image/png')
DOWNLOAD_EXTENSION = '.jpg'
class Candidate():
class Candidate(object):
"""Holds information about a matching artwork, deals with validation of
dimension restrictions and resizing.
"""