you might try sth like:
import requests
short_url = "https://maps.app.goo.gl/wsmXZrYfP8V3ur2RA"
session = requests.Session()
resp = session.head(short_url, allow_redirects=True)
print(resp.url)
giving at least me:
which I consider the correct coordinates.
Regards,
ak