Skip to content

Commit dc06fcb

Browse files
committed
Move type ignore moved by project:fix
1 parent 0cd7130 commit dc06fcb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

exasol/saas/client/api_access.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ def get_connection_params(
170170
)
171171
clusters = list_clusters.sync(account_id, database_id, client=client)
172172
cluster_id = next(
173-
filter(lambda cl: cl.main_cluster, clusters)
174-
).id # type: ignore
173+
filter(lambda cl: cl.main_cluster, clusters) # type: ignore
174+
).id
175175
connections = get_cluster_connection.sync(
176176
account_id, database_id, cluster_id, client=client
177177
)

0 commit comments

Comments
 (0)