Skip to content

Commit 5077604

Browse files
committed
wildcard import comment
1 parent 4f2c338 commit 5077604

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

get_imports.py

+3
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,9 @@ def get_libs_for_project(project_name):
178178
cur_lib = cur_import.name.split(".")[0]
179179
if cur_lib in bundle_data or cur_lib in community_bundle_data:
180180
found_libs.add(cur_lib)
181+
182+
# check if it's a wildcard import e.g.
183+
# from module.submodule import *
181184
if cur_import.name.endswith(".*"):
182185
filepath = os.path.join(
183186
project_dir,

0 commit comments

Comments
 (0)