forked from ungleich-public/cdist
new style classes
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
d93d132c05
commit
1aa2c48baf
2 changed files with 2 additions and 4 deletions
|
@ -35,12 +35,10 @@ import cdist
|
|||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
class GlobalExplorer:
|
||||
class GlobalExplorer(object):
|
||||
"""Execute explorers"""
|
||||
|
||||
def __init__(self, local_path, remote_path):
|
||||
self.context = context
|
||||
|
||||
self.local_path = local_path
|
||||
self.remote_path = remote_path
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ import cdist
|
|||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
class Explorer:
|
||||
class TypeExplorer(object):
|
||||
"""Execute explorers"""
|
||||
|
||||
def __init__(self, context):
|
||||
|
|
Loading…
Reference in a new issue