Skip to content

Commit 7be0b42

Browse files
committed
project:fix
1 parent bdc8963 commit 7be0b42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exasol/saas/client/api_access.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class DatabaseDeleteTimeout(Exception):
8484

8585
class OpenApiError(RuntimeError):
8686
def __init__(self, message: str, error: ApiError | None):
87-
super().__init__(f'{message}: {error.message}.' if error else message)
87+
super().__init__(f"{message}: {error.message}." if error else message)
8888

8989

9090
def create_saas_client(
@@ -188,7 +188,7 @@ def get_connection_params(
188188
"Failed to get the connection data to"
189189
f" host {host}, account {account_id},"
190190
f" database with ID {database_id} named {database_name}",
191-
connection
191+
connection,
192192
)
193193
return {
194194
"dsn": f"{connection.dns}:{connection.port}",

0 commit comments

Comments
 (0)