df = pd.DataFrame.from_dict(self._logs) df.to_csv('logs.csv', sep='\t', index=False) def handle_accept(self): if self.current_point is not None: self.picked_points_mask[self.current_point] = 1 obj_name = self._point_types[self.current_point] print(f"Accept, Object Type: {ob...