Skip to content

Commit ac9f48f

Browse files
MatthijsBurghar13pit
authored andcommitted
Remove commented code
1 parent d4ce431 commit ac9f48f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

installer/check_dependency_versions.py

-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def main() -> int:
3030
if value.req_version != "None" and value.req_version != value.actual_version:
3131
print(f"Package {value.name}, current version {value.actual_version}, required version {value.req_version}")
3232
mismatch_found = True
33-
# print("\n".join(dep))
3433

3534
if mismatch_found:
3635
print("Mismatch found in dependencies")
@@ -59,7 +58,6 @@ def recursive_get_deps(path: str) -> dict:
5958
try:
6059
dep_path = rospack.get_path(package) + "/package.xml"
6160
except rospkg.common.ResourceNotFound:
62-
# print(f"could not find {package}, assuming not a ros package")
6361
del deps[package]
6462
continue
6563

0 commit comments

Comments
 (0)