Philipp Hörist pushed to branch master at gajim / python-nbxmpp
Commits:
cd11cc3f by Philipp Hörist at 2024-04-27T23:42:43+02:00
cq: Protocol: Fix type annotation
- - - - -
1 changed file:
- nbxmpp/protocol.py
Changes:
=====================================
nbxmpp/protocol.py
=====================================
@@ -772,7 +772,7 @@ class JID:
self.domain is not None and
self.resource is not None)
- def new_with(self, **kwargs: dict[str, str]) -> JID:
+ def new_with(self, **kwargs: Any) -> JID:
new = asdict(self)
new.update(kwargs)
return JID(**new)
View it on GitLab:
https://dev.gajim.org/gajim/python-nbxmpp/-/commit/cd11cc3f6f3cf51ff1c624d51848ccf7b0e73836
--
View it on GitLab:
https://dev.gajim.org/gajim/python-nbxmpp/-/commit/cd11cc3f6f3cf51ff1c624d51848ccf7b0e73836
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]