Skip to content

Commit 4f2c338

Browse files
committed
os.path.join instead of string join
1 parent 45d3387 commit 4f2c338

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

get_imports.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ def get_libs_for_project(project_name):
180180
found_libs.add(cur_lib)
181181
if cur_import.name.endswith(".*"):
182182
filepath = os.path.join(
183-
project_dir, "/".join(cur_import.name[:-2].split(".")) + ".py"
183+
project_dir,
184+
os.path.join(*cur_import.name[:-2].split(".")) + ".py",
184185
)
185186
if os.path.exists(filepath):
186187
second_level_imports = findimports.find_imports(filepath)

0 commit comments

Comments
 (0)