diff --git a/lib/cdist/global_explorer.py b/lib/cdist/global_explorer.py
index 9929cfd6..8a9b8c73 100644
--- a/lib/cdist/global_explorer.py
+++ b/lib/cdist/global_explorer.py
@@ -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
 
diff --git a/lib/cdist/type_explorer.py b/lib/cdist/type_explorer.py
index 46139ece..7d8df3b2 100644
--- a/lib/cdist/type_explorer.py
+++ b/lib/cdist/type_explorer.py
@@ -35,7 +35,7 @@ import cdist
 
 log = logging.getLogger(__name__)
 
-class Explorer:
+class TypeExplorer(object):
     """Execute explorers"""
 
     def __init__(self, context):