Skip to content
Snippets Groups Projects
Commit 5d8f36a8 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'ValkyrieConf' into 'master'

Fix for Error in "from ValkyrieConf import ValgrindSvc as _ValgrindSvc" (Python3)

See merge request atlas/athena!35091
parents 86593ef7 d99caf67
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