remove sfa upcalls
[plcapi.git] / PLC / Methods / DeleteSlice.py
index d2d4be8..d3bc8f4 100644 (file)
@@ -5,7 +5,6 @@ from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Slices import Slice, Slices
 from PLC.Auth import Auth
-from PLC.SFA import SFA
 
 class DeleteSlice(Method):
     """
@@ -48,7 +47,4 @@ class DeleteSlice(Method):
         slice.delete()
         self.event_objects = {'Slice': [slice['slice_id']]}
 
-        sfa = SFA(self.api)
-        sfa.delete_record(slice, 'slice')
-
         return 1