How to get coordinates of bounding box?

How to access to bounding box coordinates using open3d?
I created bbox with “obb1 = source.get_oriented_bounding_box()” and tried to access to edge coordinates with “np.asarray(obb1.get_box_points)”.
However, the array is empty…

Never mind, I forgot to add () after get_box_points…