diff --git a/Database/AthenaRoot/AthenaRootComps/python/AthenaRootBase.py b/Database/AthenaRoot/AthenaRootComps/python/AthenaRootBase.py
index f95391bd7da8fdddbcda71f1abbf84bc6f23db4b..504d298c58b240abfe8878e44bf827229b855bf0 100644
--- a/Database/AthenaRoot/AthenaRootComps/python/AthenaRootBase.py
+++ b/Database/AthenaRoot/AthenaRootComps/python/AthenaRootBase.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 # @file AthenaRootComps/python/AthenaRootBase.py
 # @purpose make the Athena framework write a set of ROOT files
@@ -11,7 +11,7 @@ def _loadBasicAthenaRoot():
 
      from AthenaCommon import CfgMgr
      ## make sure we have been -at least- minimally correctly configured
-     import AthenaCommon.AtlasUnixStandardJob
+     import AthenaCommon.AtlasUnixStandardJob  # noqa: F401
 
      from AthenaCommon.Logging import logging
      from AthenaCommon.AppMgr  import ServiceMgr as svcMgr
@@ -22,8 +22,6 @@ def _loadBasicAthenaRoot():
      svcMgr += CfgMgr.Athena__RootSvc("AthenaRootSvc")
      svcMgr += CfgMgr.Athena__RootCnvSvc("AthenaRootCnvSvc")
 
-     from AthenaCommon.AppMgr import theApp
-
      if not hasattr (svcMgr, 'EventPersistencySvc'):
          svcMgr += CfgMgr.EvtPersistencySvc( "EventPersistencySvc" )
          svcMgr.EventPersistencySvc.CnvServices += [ "AthenaRootCnvSvc" ]
diff --git a/Database/AthenaRoot/AthenaRootComps/python/Configurables.py b/Database/AthenaRoot/AthenaRootComps/python/Configurables.py
index 81fd6a9bbeb6f5706df3d66dfc6800df230dfbeb..3ea4ff797c7a89b15a0e01030949f38b3c07eff6 100644
--- a/Database/AthenaRoot/AthenaRootComps/python/Configurables.py
+++ b/Database/AthenaRoot/AthenaRootComps/python/Configurables.py
@@ -1,11 +1,11 @@
-# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 # @file: Configurables.py
 # @purpose: customized Configurable classes for AthenaRootComps
 # @author: Sebastien Binet <binet@cern.ch>
 
 ### ---------------------------------------------------------------------------
-from AthenaRootComps.OutputStreamAthenaRoot import createNtupleOutputStream
+from AthenaRootComps.OutputStreamAthenaRoot import createNtupleOutputStream  # noqa: F401
 
 ### ---------------------------------------------------------------------------
 ## import the automatically generated Configurables
diff --git a/Database/AthenaRoot/AthenaRootComps/python/OutputStreamAthenaRoot.py b/Database/AthenaRoot/AthenaRootComps/python/OutputStreamAthenaRoot.py
index 2ca1112f58d3cda496d1cfda9ee60069aaee319e..2dc7220931d25ca80cb1a702c2c01261952cf2f2 100644
--- a/Database/AthenaRoot/AthenaRootComps/python/OutputStreamAthenaRoot.py
+++ b/Database/AthenaRoot/AthenaRootComps/python/OutputStreamAthenaRoot.py
@@ -1,16 +1,12 @@
-# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 ## @file OutputStreamAthenaRoot.py
 ## @brief Helper methods to create output streams
 ## @author Sebastien Binet <binet@cern.ch>, Peter van Gemmeren <gemmeren@bnl.gov>
-## $Id: OutputStreamAthenaRoot.py 723505 2016-02-11 22:29:40Z gemmeren $
 ###############################################################
 
-from __future__ import print_function
-
 import AthenaCommon.CfgMgr as CfgMgr
 from AthenaCommon.AppMgr import theApp
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
 from AthenaRootComps.AthenaRootCompsConf import Athena__RootOutputStreamTool as AthenaRootOutputStreamTool
 
 def createNtupleOutputStream(streamName, fileName, tupleName="physics", asAlg = False):
@@ -107,7 +103,6 @@ class AthenaRootOutputStreamProtect(CfgMgr.AthenaOutputStream):
     pass
 """
 
-from AthenaCommon import CfgMgr
 class AthenaRootNtupleOutputStreamProtect(CfgMgr.Athena__RootNtupleOutputStream):
     def __init__(self, name='Stream1', **kw):
         kw['name'] = kw.get('name', name)
diff --git a/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaRoot.py b/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaRoot.py
index b11721e3e895934c45d6fa6f8e9b3345e7582d2a..d7a34e04bdd7ff5d6a2023537f935620c6489d8c 100644
--- a/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaRoot.py
+++ b/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaRoot.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 # @file AthenaRootComps/python/ReadAthenaRoot.py
 # @purpose make the Athena framework read a set of ROOT files to emulate the
@@ -52,7 +52,7 @@ def _configure():
     evtloop = getattr(svcMgr, theApp.EventLoop)
     try:
         evtloop.EventPrintoutInterval = 10000
-    except Exception as err:
+    except Exception:
         msg.info('disabling event loop heartbeat... [failed]')
         msg.info('performances might be sub-par... sorry.')
         pass
diff --git a/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaxAOD.py b/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaxAOD.py
index 36536fac44c58a9d5179292ff95c0a29573d3809..59cce267ff96571cac76d72bc187660ac0d9ec96 100644
--- a/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaxAOD.py
+++ b/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaxAOD.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 # @file AthenaRootComps/python/ReadAthenaxAOD.py
 # @purpose make the Athena framework read a set of xAOD files to emulate the
@@ -50,7 +50,7 @@ def _configure():
     evtloop = getattr(svcMgr, theApp.EventLoop)
     try:
         evtloop.EventPrintoutInterval = 10000
-    except Exception as err:
+    except Exception:
         msg.info('disabling event loop heartbeat... [failed]')
         msg.info('performances might be sub-par... sorry.')
         pass
diff --git a/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaxAODHybrid.py b/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaxAODHybrid.py
index d59a60a21ae386aa7a84865b6bba0f878f4eee12..3f36a60880c9aa6e9df962496dde2d646e79ad8d 100644
--- a/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaxAODHybrid.py
+++ b/Database/AthenaRoot/AthenaRootComps/python/ReadAthenaxAODHybrid.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 # @file AthenaRootComps/python/ReadAthenaxAODHybrid.py
 # @purpose make the Athena framework read a set of xAOD files to emulate the
@@ -61,7 +61,7 @@ def _configure():
     evtloop = getattr(svcMgr, theApp.EventLoop)
     try:
         evtloop.EventPrintoutInterval = 10000
-    except Exception as err:
+    except Exception:
         msg.info('disabling event loop heartbeat... [failed]')
         msg.info('performances might be sub-par... sorry.')
         pass
diff --git a/Database/AthenaRoot/AthenaRootComps/python/WriteAthenaRoot.py b/Database/AthenaRoot/AthenaRootComps/python/WriteAthenaRoot.py
index 3a7134b8232839987803d8f2ab8ebb550f2b2d23..a725099a981d982de8da7bb040313c74d358927f 100644
--- a/Database/AthenaRoot/AthenaRootComps/python/WriteAthenaRoot.py
+++ b/Database/AthenaRoot/AthenaRootComps/python/WriteAthenaRoot.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 
 # @file AthenaRootComps/python/WriteAthenaRoot.py
 # @purpose make the Athena framework write a set of ROOT files
@@ -19,7 +19,7 @@ def _configureWriteAthenaRoot():
     msg.debug( "Configuring Athena for writing ROOT files..." )
 
     # Load the basic services
-    import AthenaRootComps.AthenaRootBase
+    import AthenaRootComps.AthenaRootBase  # noqa: F401
 
     '''
     from AthenaCommon.AppMgr  import ServiceMgr as svcMgr