Skip to content
Snippets Groups Projects
Commit d99caf67 authored by Christos Anastopoulos's avatar Christos Anastopoulos
Browse files

fix for from ValkyrieConf import ValgrindSvc as _ValgrindSvc

parent 6a76985f
No related branches found
No related tags found
No related merge requests found
...@@ -5,16 +5,16 @@ ...@@ -5,16 +5,16 @@
# @author: Frank Winklmeier # @author: Frank Winklmeier
# import the automatically generated Configurable # import the automatically generated Configurable
from ValkyrieConf import ValgrindSvc as _ValgrindSvc from Valkyrie.ValkyrieConf import ValgrindSvc as _ValgrindSvc
class ValgrindSvc( _ValgrindSvc): class ValgrindSvc( _ValgrindSvc):
__slots__ = ( ) # enforce no new properties __slots__ = ( ) # enforce no new properties
def __init__(self, name = "ValgrindSvc", **kwargs ): def __init__(self, name = "ValgrindSvc", **kwargs ):
# have to call base init # have to call base init
kwargs['name'] = name kwargs['name'] = name
super( ValgrindSvc, self ).__init__( **kwargs ) super( ValgrindSvc, self ).__init__( **kwargs )
# return # return
# def setDefaults( cls, handle ): # def setDefaults( cls, handle ):
...@@ -35,4 +35,4 @@ class ValgrindSvc( _ValgrindSvc): ...@@ -35,4 +35,4 @@ class ValgrindSvc( _ValgrindSvc):
pass # class ValgrindSvc pass # class ValgrindSvc
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment