Skip to content

Commit

Permalink
Remove print statements.
Browse files Browse the repository at this point in the history
Signed-off-by: David Oberacker <[email protected]>
  • Loading branch information
Oberacda authored and nspielbau committed Jun 19, 2024
1 parent c5d6cf0 commit 525b794
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ros_bt_py/tests/test_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,9 @@ def import_module_from_package(package) -> None:
for loader, name, is_pkg in pkgutil.walk_packages(package.__path__):
full_name = package.__name__ + "." + name
if is_pkg:
print(f"New package: {full_name}")
new_package = __import__(full_name, fromlist=[package.__name__])
import_module_from_package(new_package)
else:
print(f"New module: {full_name}")
try:
importlib.import_module(full_name)
except ModuleNotFoundError as exc:
Expand Down

0 comments on commit 525b794

Please sign in to comment.