Skip to content

Commit 0af6ff1

Browse files
committed
wildcard import comment
1 parent 5077604 commit 0af6ff1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

get_imports.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ def get_libs_for_project(project_name):
179179
if cur_lib in bundle_data or cur_lib in community_bundle_data:
180180
found_libs.add(cur_lib)
181181

182-
# check if it's a wildcard import e.g.
183-
# from module.submodule import *
182+
# findimports returns import name in the form of ``foo.bar.*``
184183
if cur_import.name.endswith(".*"):
185184
filepath = os.path.join(
186185
project_dir,

0 commit comments

Comments
 (0)