Skip to content

Fix deprecated python code in athenaHLT.py

  • remove the use of six module (for python 2->3 migration)
  • change collections.Mapping into collections.abc.Mapping

The latter fixes:

athenaHLT.py:188: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working

Merge request reports