hdbcli: Fix wrong connection argument name (#10070)

The name should be `user` and not `username`
This commit is contained in:
kasium
2023-04-24 16:12:51 +02:00
committed by GitHub
parent 22ced49645
commit 1b68adee9a

View File

@@ -18,7 +18,7 @@ class Connection:
self,
address: str,
port: int,
username: str,
user: str,
password: str,
autocommit: bool = ...,
packetsize: int | None = ...,