From 77cc40b15bb14e3e33aff45c267d6292f724cabe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Hern=C3=A1ndez=20Cordero?= Date: Thu, 7 Sep 2023 17:47:14 +0200 Subject: [PATCH] Removed python trace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alejandro Hernández Cordero --- examples/scripts/python_api/systems/test_system.py | 2 -- tutorials/python_interfaces.md | 2 -- 2 files changed, 4 deletions(-) diff --git a/examples/scripts/python_api/systems/test_system.py b/examples/scripts/python_api/systems/test_system.py index fe4e807919..b5d03347b0 100644 --- a/examples/scripts/python_api/systems/test_system.py +++ b/examples/scripts/python_api/systems/test_system.py @@ -34,8 +34,6 @@ def pre_update(self, info, ecm): return if info.iterations % 3000 == 0: - print(f"{self.id} {info.real_time} pre_update") - self.link.add_world_force( ecm, Vector3d(0, 0, self.force), Vector3d(random.random(), random.random(), 0)) diff --git a/tutorials/python_interfaces.md b/tutorials/python_interfaces.md index ad0e0d8ddc..e4a75b19e8 100644 --- a/tutorials/python_interfaces.md +++ b/tutorials/python_interfaces.md @@ -118,8 +118,6 @@ class TestSystem(object): return if info.iterations % 3000 == 0: - print(f"{self.id} {info.real_time} pre_update") - self.link.add_world_force( ecm, Vector3d(0, 0, self.force), Vector3d(random.random(), random.random(), 0))