From 14bf1cb723e785bb3290398370ac26aad3761c24 Mon Sep 17 00:00:00 2001 From: aytekin Date: Mon, 3 Jun 2024 16:12:46 -0500 Subject: [PATCH] feat: file formatted --- smartcar/smartcar.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/smartcar/smartcar.py b/smartcar/smartcar.py index 4daf03f7..d3a74506 100644 --- a/smartcar/smartcar.py +++ b/smartcar/smartcar.py @@ -265,7 +265,9 @@ def get_management_token(amt: str, username: str = "default") -> str: def get_connections( - amt: str, filter: Optional[Dict[str, str]] = None, paging: Optional[Dict[str, Optional[int]]] = None + amt: str, + filter: Optional[Dict[str, str]] = None, + paging: Optional[Dict[str, Optional[int]]] = None, ) -> types.GetConnections: """ Returns a paged list of all the vehicles that are connected to the application @@ -273,10 +275,10 @@ def get_connections( Args: amt (str): Application Management Token from Smartcar Dashboard - filter (dict, optional): + filter (dict, optional): vehicle_id (str, optional): If provided, filters connections to a specific vehicle. user_id (str, optional): If provided, filters connections to a specific user. - paging (dict, optional): + paging (dict, optional): limit (int, optional): The maximum number of connections to return. cursor (str, optional): The cursor ID for pagination to retrieve the next set of results.