Remove _SupportsGetMesh from docs by radarhere · Pull Request #7812 · python-pillow/Pillow

For Alex's reference, this is what we're talking about.

Pillow/src/PIL/ImageOps.py

Lines 414 to 424 in e1c5d57

class _SupportsGetMesh(Protocol):
def getmesh(
self, image: Image.Image
) -> list[
tuple[tuple[int, int, int, int], tuple[int, int, int, int, int, int, int, int]]
]: ...
def deform(
image: Image.Image,
deformer: _SupportsGetMesh,