fix(imp): add compatibility module for imp deprecation

This commit is contained in:
2024-11-28 21:56:59 +00:00
parent ddb81a203a
commit 43366e3c77
2 changed files with 7 additions and 1 deletions

4
imp.py Normal file
View File

@ -0,0 +1,4 @@
"""Compatibility module that imports all symbols from the importlib module.
and exposes them as imp."""
from importlib import *