Make all classes subclass from object

This commit is contained in:
Bruno Oliveira
2018-06-03 16:10:24 -03:00
parent 98ae25c12c
commit fd2e8a6711
6 changed files with 8 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ import _pytest.hookspec
import pytest
class WorkerInteractor:
class WorkerInteractor(object):
def __init__(self, config, channel):
self.config = config
self.workerid = config.workerinput.get('workerid', "?")