We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdc8963 commit 7be0b42Copy full SHA for 7be0b42
exasol/saas/client/api_access.py
@@ -84,7 +84,7 @@ class DatabaseDeleteTimeout(Exception):
84
85
class OpenApiError(RuntimeError):
86
def __init__(self, message: str, error: ApiError | None):
87
- super().__init__(f'{message}: {error.message}.' if error else message)
+ super().__init__(f"{message}: {error.message}." if error else message)
88
89
90
def create_saas_client(
@@ -188,7 +188,7 @@ def get_connection_params(
188
"Failed to get the connection data to"
189
f" host {host}, account {account_id},"
190
f" database with ID {database_id} named {database_name}",
191
- connection
+ connection,
192
)
193
return {
194
"dsn": f"{connection.dns}:{connection.port}",
0 commit comments