remove extra param for getuser

This commit is contained in:
Izalia Mae 2024-04-22 22:47:01 -04:00
parent 7e909ee4f8
commit c5c7b895d6

View file

@ -371,7 +371,7 @@ class Database(typing.Generic[T]):
self.port: int = port
"Port the server is listening on"
self.username: str = username or getuser(z)
self.username: str = username or getuser()
"User to connect to the server with"
self.password: str | None = password