fix_imports2.py 289 Bytes
Newer Older
1 2 3 4 5 6
"""Fix incompatible imports and module references that must be fixed after
fix_imports."""
from . import fix_imports


MAPPING = {
7 8
            'whichdb': 'dbm',
            'anydbm': 'dbm',
9 10 11 12 13
          }


class FixImports2(fix_imports.FixImports):

14
    run_order = 7
15 16

    mapping = MAPPING