From 65b7af74622e35edc59ab521df1e1da387626956 Mon Sep 17 00:00:00 2001 From: TJ Khoo <khoo@cern.ch> Date: Wed, 28 Nov 2018 19:01:21 +0100 Subject: [PATCH] Fix python formatting issues that seem to break flake8 unit test Former-commit-id: 66e7be7b29e6e82e14c03afd160576c022d270ce --- Control/AthenaConfiguration/python/MainServicesConfig.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Control/AthenaConfiguration/python/MainServicesConfig.py b/Control/AthenaConfiguration/python/MainServicesConfig.py index 87703e1f0e5..da46005306b 100644 --- a/Control/AthenaConfiguration/python/MainServicesConfig.py +++ b/Control/AthenaConfiguration/python/MainServicesConfig.py @@ -68,7 +68,6 @@ def MainServicesThreadedCfg(cfgFlags): return cfg # Migrated code from AtlasThreadedJob.py - from AthenaCommon.Constants import VERBOSE, DEBUG, INFO, ERROR from GaudiCoreSvc.GaudiCoreSvcConf import MessageSvc from GaudiSvc.GaudiSvcConf import StatusCodeSvc, AuditorSvc @@ -92,7 +91,8 @@ def MainServicesThreadedCfg(cfgFlags): cfg.addService( StoreGateConf.StoreGateSvc("ConditionStore") ) from GaudiHive.GaudiHiveConf import AlgResourcePool - arp=AlgResourcePool( OutputLevel = INFO ); + from AthenaCommon.Constants import INFO + arp=AlgResourcePool( OutputLevel = INFO ) arp.TopAlg=["AthMasterSeq"] #this should enable control flow cfg.addService( arp ) -- GitLab