Skip to content

Commit 5be8241

Browse files
committed
Format code
1 parent 043e6bb commit 5be8241

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

graphdatascience/session/dbms_connection_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class DbmsConnectionInfo:
1717
def auth(self) -> Tuple[str, str]:
1818
"""
1919
Returns the username and password for authentication.
20-
20+
2121
Returns:
2222
A tuple containing the username and password.
2323
"""

graphdatascience/session/gds_sessions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,13 @@ def from_specific_instance_details(cls, instance_details: InstanceSpecificDetail
4141
class AuraAPICredentials:
4242
"""
4343
Represents the credentials required for accessing the Aura API.
44-
44+
4545
Attributes:
4646
client_id (str): The client ID for authentication.
4747
client_secret (str): The client secret for authentication.
4848
tenant (Optional[str]): The tenant for authentication. Needed if a client belongs to multiple tenants.
4949
"""
50+
5051
client_id: str
5152
client_secret: str
5253
tenant: Optional[str] = None

graphdatascience/session/session_sizes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class SessionSizes:
2626
def by_memory() -> Type[SessionSizeByMemory]:
2727
"""
2828
Helper method to specify the memory size of a session.
29-
29+
3030
Returns:
3131
Type[SessionSizeByMemory]: The SessionSizeByMemory class.
3232
"""

0 commit comments

Comments
 (0)