Merge pull request #747 from cjmayo/importlib

Import importlib submodules
This commit is contained in:
Chris Mayo 2023-06-08 19:19:31 +01:00 committed by GitHub
commit 87f9a9ff11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@
Store metadata and options.
"""
import importlib
import importlib.resources
import os
import re
import urllib.parse

View file

@ -8,7 +8,7 @@ Example usage::
plugins = loader.get_plugins(modules, PluginClass)
"""
import os
import importlib
import importlib.util
import pkgutil
from .fileutil import is_writable_by_others