Skip to content

Commit a910bdd

Browse files
author
Sascha Jongebloed
committed
fix to push object
1 parent 68b83a4 commit a910bdd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/knowrob_designator_service.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ def handle_push_object_designator(self, msg):
8282
modal_frame = get_default_modalframe()
8383
modal_frame.confidence = 1.0
8484
# Add the designator to knowrob
85-
self.knowrob.tell(builder.get_triples(), modal_frame)
86-
rospy.loginfo(f"Sent {len(triples)} triples for PushObjectDesignator: {msg.designator_id}")
85+
# self.knowrob.tell(builder.get_triples(), modal_frame)
86+
rospy.loginfo(f"Sent {len(triples)} triples for PushObjectDesignator")
8787
if print_triples:
8888
to_print = ""
89-
to_print += f"Triples for PushObjectDesignator {msg.designator_id}:\n"
89+
to_print += f"Triples for PushObjectDesignator:\n"
9090
for s, p, o in triples:
9191
to_print += f"{s} {p} {o}\n"
9292
rospy.loginfo(to_print)

0 commit comments

Comments
 (0)