import aiohttp from typing import Any, Dict from .tessie_wrapper import tessieRequest async def get_tire_pressure( session: aiohttp.ClientSession, vin: str, api_key: str ) -> Dict[str, Any]: return await tessieRequest(session, "GET", f"/{vin}/tire_pressure", api_key)