1"""Fix incompatible imports and module references that must be fixed after 2fix_imports.""" 3from . import fix_imports 4 5 6MAPPING = { 7 'whichdb': 'dbm', 8 'anydbm': 'dbm', 9 } 10 11 12class FixImports2(fix_imports.FixImports): 13 14 run_order = 7 15 16 mapping = MAPPING 17