From 1b68adee9afbc594fd934d0fb585ae683c3246e5 Mon Sep 17 00:00:00 2001 From: kasium <15907922+kasium@users.noreply.github.com> Date: Mon, 24 Apr 2023 16:12:51 +0200 Subject: [PATCH] hdbcli: Fix wrong connection argument name (#10070) The name should be `user` and not `username` --- stubs/hdbcli/hdbcli/dbapi.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/hdbcli/hdbcli/dbapi.pyi b/stubs/hdbcli/hdbcli/dbapi.pyi index 0ef648e0d..1d8da4539 100644 --- a/stubs/hdbcli/hdbcli/dbapi.pyi +++ b/stubs/hdbcli/hdbcli/dbapi.pyi @@ -18,7 +18,7 @@ class Connection: self, address: str, port: int, - username: str, + user: str, password: str, autocommit: bool = ..., packetsize: int | None = ...,