No matching overload when calling getVelocity() on AbsolutePVCoordinates instance with no arguments

Hi,

I get an error when calling getVelocity() with no arguments on an instance of AbsolutePVCoordinates:

from org.orekit.utils import TimeStampedPVCoordinates, AbsolutePVCoordinates
from org.orekit.time import AbsoluteDate, TimeScalesFactory
from org.hipparchus.geometry.euclidean.threed import Vector3D
from org.orekit.frames import FramesFactory

pv = TimeStampedPVCoordinates(
    AbsoluteDate("2025-08-11T00:00:00", TimeScalesFactory.getUTC()),
    Vector3D(7000e3, 0., 0.),
    Vector3D(7000.0, 0., 0.),
)

print(pv.getPosition())
print(pv.getVelocity())


pv_abs = AbsolutePVCoordinates(
    FramesFactory.getGCRF(),
    AbsoluteDate("2025-08-11T00:00:00", TimeScalesFactory.getUTC()),
    Vector3D(7000e3, 0., 0.),
    Vector3D(7000.0, 0., 0.),
)

print(pv_abs.getPosition())
print((TimeStampedPVCoordinates @ pv_abs).getVelocity()) # works
print(pv_abs.getVelocity()) # raises error below

Gives on the last line:

TypeError: No matching overloads found for org.orekit.utils.PVCoordinatesProvider.getVelocity(), options are: E public default org.hipparchus.geometry.euclidean.threed.Vector3D org.orekit.utils.PVCoordinatesProvider.getVelocity(org.orekit.time.AbsoluteDate,org.orekit.frames.Frame)

I think calling this method with no argument should find the corresponding method in the parent class PVCoordinates .

Note: casting pv_abs to TimeStampedPVCoordinates works (although Pycharm doesn't recognize the @ operator in this case: Class 'type' does not define '**matmul**', so the '@' operator cannot be used on its instances)