We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f2c338 commit 5077604Copy full SHA for 5077604
get_imports.py
@@ -178,6 +178,9 @@ def get_libs_for_project(project_name):
178
cur_lib = cur_import.name.split(".")[0]
179
if cur_lib in bundle_data or cur_lib in community_bundle_data:
180
found_libs.add(cur_lib)
181
+
182
+ # check if it's a wildcard import e.g.
183
+ # from module.submodule import *
184
if cur_import.name.endswith(".*"):
185
filepath = os.path.join(
186
project_dir,
0 commit comments