Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-02-05 22:34:25 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-02-05 22:34:25 +0300
commite837ef4e0a2f170d792c909a15a1ff977d62942e (patch)
treee17260eeeafca1c3e9c3c9af1de5ac5dadebb8a0 /typings
parent97679843f08b2dba4943417edb546e52ff86060f (diff)
feat: Improve KeepassXC Integration
Provide setting which improves the KeepassXC Integration NOTES: If you already used KeepassXC with Gajim, enabling the new integration setting will trigger new entries in the password manager
Diffstat (limited to 'typings')
-rw-r--r--typings/keyring/backend.pyi3
1 files changed, 2 insertions, 1 deletions
diff --git a/typings/keyring/backend.pyi b/typings/keyring/backend.pyi
index 29ad39579..7f2e67b14 100644
--- a/typings/keyring/backend.pyi
+++ b/typings/keyring/backend.pyi
@@ -1,5 +1,5 @@
-
+from typing import Any
from typing import Optional
class KeyringBackend:
@@ -7,6 +7,7 @@ class KeyringBackend:
def get_password(self, service: str, username: str) -> Optional[str]: ...
def set_password(self, service: str, username: str, password: str) -> None: ...
def delete_password(self, service: str, username: str) -> None: ...
+ def with_properties(self, **kwargs: Any) -> KeyringBackend: ...
def get_all_keyring() -> list[KeyringBackend]: ...