Skip to content

Commit 97de8e6

Browse files
authored
Update keypair.py (#1440)
Pass account/user as kwargs (instead of args) to 'self.prepare'.
1 parent ea7fc66 commit 97de8e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/snowflake/connector/auth/keypair.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def handle_timeout(
199199
)
200200
self._retry_ctx.increment_retry()
201201

202-
self.prepare(account, user)
202+
self.prepare(account=account, user=user)
203203

204204
@staticmethod
205205
def can_handle_exception(op: OperationalError) -> bool:

0 commit comments

Comments
 (0)