We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45d3387 commit 4f2c338Copy full SHA for 4f2c338
get_imports.py
@@ -180,7 +180,8 @@ def get_libs_for_project(project_name):
180
found_libs.add(cur_lib)
181
if cur_import.name.endswith(".*"):
182
filepath = os.path.join(
183
- project_dir, "/".join(cur_import.name[:-2].split(".")) + ".py"
+ project_dir,
184
+ os.path.join(*cur_import.name[:-2].split(".")) + ".py",
185
)
186
if os.path.exists(filepath):
187
second_level_imports = findimports.find_imports(filepath)
0 commit comments