fix_imports2.py 289 B

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