All classes should explicitly inherit object class

To avoid pylint errors six.with_metaclass was substituted
with six.add_metaclass and explicit inheritance of object class.

Change-Id: I516f111a9ba1af414b1a5daefad44b743af0412f
This commit is contained in:
anastasia-karpinska
2013-11-28 14:27:37 +02:00
parent 4400723399
commit 06bd21f8c2
8 changed files with 18 additions and 9 deletions

View File

@@ -22,7 +22,8 @@ import abc
import six
class JobBoard(six.with_metaclass(abc.ABCMeta)):
@six.add_metaclass(abc.ABCMeta)
class JobBoard(object):
"""A jobboard is an abstract representation of a place where jobs
can be posted, reposted, claimed and transferred. There can be multiple
implementations of this job board, depending on the desired semantics and