remove openstack driver references from base synchronizer

Change-Id: I1e8236763fe22d11e948d71374f38bfcabdc4b70
diff --git a/xos/synchronizers/base/openstacksyncstep.py b/xos/synchronizers/base/openstacksyncstep.py
deleted file mode 100644
index cc568f8..0000000
--- a/xos/synchronizers/base/openstacksyncstep.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import os
-import base64
-from syncstep import SyncStep
-
-class OpenStackSyncStep(SyncStep):
-    """ XOS Sync step for copying data to OpenStack 
-    """ 
-    
-    def __init__(self, **args):
-        SyncStep.__init__(self, **args)
-        return
-
-    def __call__(self, **args):
-        return self.call(**args)
diff --git a/xos/synchronizers/base/steps/sync_object.py b/xos/synchronizers/base/steps/sync_object.py
index aaf2f25..4d93faf 100644
--- a/xos/synchronizers/base/steps/sync_object.py
+++ b/xos/synchronizers/base/steps/sync_object.py
@@ -3,15 +3,13 @@
 from collections import defaultdict
 from django.db.models import F, Q
 from xos.config import Config
-from synchronizers.base.openstacksyncstep import OpenStackSyncStep
 from synchronizers.base.syncstep import *
 from core.models import *
 from synchronizers.base.ansible import *
-from openstack_xos.driver import OpenStackDriver
 from xos.logger import observer_logger as logger
 import json
 
-class SyncObject(OpenStackSyncStep):
+class SyncObject(SyncStep):
     provides=[] # Caller fills this in
     requested_interval=0
     observes=[] # Caller fills this in