Skip to content

Commit

Permalink
Remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh committed Feb 14, 2023
1 parent 33a0c8d commit 2a684e3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions installer/check_dependency_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def main() -> int:
if value.req_version != "None" and value.req_version != value.actual_version:
print(f"Package {value.name}, current version {value.actual_version}, required version {value.req_version}")
mismatch_found = True
# print("\n".join(dep))

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

Expand Down

0 comments on commit 2a684e3

Please sign in to comment.