Skip to content

Commit

Permalink
Remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrxyz committed Sep 10, 2024
1 parent 01bbfbb commit 61e1f33
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,15 +296,7 @@ async def explore_closest_until(self, is_done, filter_and_sort):

# Catch case where we invesitegate the shore
if obj_vol > 3:
print(
f"Object {i} volume: ",
objects[i].scale.x
* objects[i].scale.y
* objects[i].scale.z,
)
continue
else:
print(positions[i])

if (
objects[i].id not in investigated
Expand All @@ -330,12 +322,6 @@ async def explore_closest_until(self, is_done, filter_and_sort):

# Catch case where we invesitegate the shore
if obj_vol > 3:
print(
f"Object {i} volume: ",
objects[i].scale.x
* objects[i].scale.y
* objects[i].scale.z,
)
continue

if (
Expand Down

0 comments on commit 61e1f33

Please sign in to comment.