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-11-06 13:54:33 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-11-06 15:32:58 +0300
commit9463c829d6a04d3f219db4dad9cd86c39cc8c53d (patch)
tree20c91768ccb3d696d1936311935bd4ef5ea29269
parente9b334752c2e6a864e3214d955c7e62bb3f91e11 (diff)
cq: Fix type annotation
-rw-r--r--gajim/gtk/application.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gajim/gtk/application.py b/gajim/gtk/application.py
index 061b2d995..54ec8444f 100644
--- a/gajim/gtk/application.py
+++ b/gajim/gtk/application.py
@@ -529,7 +529,7 @@ class GajimApplication(Gtk.Application, CoreApplication):
def create_account(self,
account: str,
- username: str,
+ username: str | None,
domain: str,
password: str,
proxy_name: str | None,