Skip to content

Commit 18bafe1

Browse files
committed
#169 fixed typing issues
1 parent dcd94ed commit 18bafe1

File tree

3 files changed

+486
-409
lines changed

3 files changed

+486
-409
lines changed

exasol/nb_connector/connections.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ def open_bucketfs_connection(conf: Secrets) -> bfs.BucketLike:
270270
}
271271

272272
# Connect to the BucketFS service and navigate to the bucket of choice.
273-
bucketfs = bfs.Service(bucketfs_url, bucketfs_credentials, verify,
274-
conf.get(CKey.bfs_service)) # type: ignore
273+
bucketfs = bfs.Service(bucketfs_url, bucketfs_credentials, verify, # type: ignore
274+
conf.get(CKey.bfs_service))
275275
return bucketfs[conf.get(CKey.bfs_bucket)] # type: ignore
276276

277277
else:

0 commit comments

Comments
 (0)